This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Is Banshee required for tree-ssa?
- From: Phil Edwards <phil at jaj dot com>
- To: gcc at gcc dot gnu dot org
- Date: Mon, 26 Jan 2004 16:18:38 -0500
- Subject: Is Banshee required for tree-ssa?
Because I don't have libbanshee, so when tree-alias-common.c contains
/* If we have andersen's points-to analysis, include it. */
#ifdef HAVE_BANSHEE
#include "tree-alias-ander.h"
#endif
with tree-alias-ander.h containing the declaration of andersen_alias_ops, but
tree-alias-common.c then unconditionally uses that variable:
static void
create_alias_vars (void)
{
basic_block bb;
if (HAVE_BANSHEE && flag_tree_points_to == PTA_ANDERSEN)
X current_alias_ops = andersen_alias_ops;
else
....
So I get
/home/pme/src/ssa/gcc/tree-alias-common.c: In function `create_alias_vars':
/home/pme/src/ssa/gcc/tree-alias-common.c:979: error: `andersen_alias_ops' undeclared
--
<Adrinael> Real Programmers don't make "Real Programmers" one-liners.