diff options
author | Dirk Mueller <dmueller@suse.de> | 2007-01-19 11:51:25 +0000 |
---|---|---|
committer | Dirk Mueller <mueller@gcc.gnu.org> | 2007-01-19 11:51:25 +0000 |
commit | 23e739936ea5245cbf8e46e8c82bd3c881b64422 (patch) | |
tree | 1d394f559b1b32cd9be0638a0b4393c84b181c47 /gcc/tree-ssa-structalias.c | |
parent | b54c5497e582ab4ee818b7f4fa50c1ac42d42f42 (diff) | |
download | gcc-23e739936ea5245cbf8e46e8c82bd3c881b64422.zip gcc-23e739936ea5245cbf8e46e8c82bd3c881b64422.tar.gz gcc-23e739936ea5245cbf8e46e8c82bd3c881b64422.tar.bz2 |
tree-ssa-alias.c (perform_var_substitution): Fix typo in dump_flags test.
2007-01-19 Dirk Mueller <dmueller@suse.de>
* tree-ssa-alias.c (perform_var_substitution): Fix typo
in dump_flags test.
From-SVN: r120954
Diffstat (limited to 'gcc/tree-ssa-structalias.c')
-rw-r--r-- | gcc/tree-ssa-structalias.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c index e6e1c81..550ad86 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); |