aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>2004-03-12 17:49:52 +0000
committerdnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>2004-03-12 17:49:52 +0000
commit1e7e6bda08921a473ac6caa26073db89c4327e7e (patch)
tree33c99b95a75f90fd0c1e22e66dacb902380686ab
parenta11eb8efbf16bbd3ae014f9efde2eefae2b6ac34 (diff)
* tree-alias-common.c (create_alias_vars): Add #if
HAVE_BANSHEE around test for PTA_ANDERSEN. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/tree-ssa-20020619-branch@79399 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog.tree-ssa5
-rw-r--r--gcc/tree-alias-common.c4
2 files changed, 8 insertions, 1 deletions
diff --git a/gcc/ChangeLog.tree-ssa b/gcc/ChangeLog.tree-ssa
index 3fb25c62919..a3c4218dffd 100644
--- a/gcc/ChangeLog.tree-ssa
+++ b/gcc/ChangeLog.tree-ssa
@@ -1,3 +1,8 @@
+2004-03-12 Diego Novillo <dnovillo@redhat.com>
+
+ * tree-alias-common.c (create_alias_vars): Add #if
+ HAVE_BANSHEE around test for PTA_ANDERSEN.
+
2004-03-11 Diego Novillo <dnovillo@redhat.com>
* tree-dfa.c (struct walk_state): Remove fields 'is_store' and
diff --git a/gcc/tree-alias-common.c b/gcc/tree-alias-common.c
index 47d42e4f6a2..d4d2d94387f 100644
--- a/gcc/tree-alias-common.c
+++ b/gcc/tree-alias-common.c
@@ -975,9 +975,11 @@ static void
create_alias_vars (void)
{
basic_block bb;
- if (HAVE_BANSHEE && flag_tree_points_to == PTA_ANDERSEN)
+#if HAVE_BANSHEE
+ if (flag_tree_points_to == PTA_ANDERSEN)
current_alias_ops = andersen_alias_ops;
else
+#endif
{
current_alias_ops = NULL;
flag_tree_points_to = PTA_NONE;