From 23e739936ea5245cbf8e46e8c82bd3c881b64422 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Fri, 19 Jan 2007 11:51:25 +0000 Subject: [PATCH] tree-ssa-alias.c (perform_var_substitution): Fix typo in dump_flags test. 2007-01-19 Dirk Mueller * tree-ssa-alias.c (perform_var_substitution): Fix typo in dump_flags test. From-SVN: r120954 --- gcc/ChangeLog | 5 +++++ gcc/tree-ssa-structalias.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3c19575369a..b12587de8ed 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-01-19 Dirk Mueller + + * tree-ssa-alias.c (perform_var_substitution): Fix typo + in dump_flags test. + 2007-01-19 Richard Guenther * builtins.c (expand_builtin_cexpi): Fall back to expanding diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c index e6e1c81639d..550ad865eb2 100644 --- a/gcc/tree-ssa-structalias.c +++ b/gcc/tree-ssa-structalias.c @@ -1809,7 +1809,7 @@ perform_var_substitution (constraint_graph_t graph) if (graph->label[node] == 0 && TEST_BIT (graph->direct_nodes, node)) { - if (dump_file && (dump_flags && TDF_DETAILS)) + if (dump_file && (dump_flags & TDF_DETAILS)) fprintf (dump_file, "%s is a non-pointer variable, eliminating edges.\n", get_varinfo (node)->name);