From: mueller Date: Fri, 19 Jan 2007 11:51:25 +0000 (+0000) Subject: 2007-01-19 Dirk Mueller X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0868ec7d4c4ea82fd2b6e8b7fb50d957489922cb;p=thirdparty%2Fgcc.git 2007-01-19 Dirk Mueller * tree-ssa-alias.c (perform_var_substitution): Fix typo in dump_flags test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@120954 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3c19575369a4..b12587de8ede 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 e6e1c81639d4..550ad865eb2c 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);