diff options
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/tree-pretty-print.c | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ac9afeb..7f83475 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2005-07-03 Ira Rosen <irar@il.ibm.com> + + PR tree-optimization/22029 (and 22135) + * tree-pretty-print.c (dump_generic_node): Check that the node is not + a phi node before calling dump_vops. + 2005-07-02 Gabriel Dos Reis <gdr@integrable-solutions.net> * tree-dump.h (dump_string_field): Declare. diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c index 4fa0326..4d3719b 100644 --- a/gcc/tree-pretty-print.c +++ b/gcc/tree-pretty-print.c @@ -267,7 +267,8 @@ dump_generic_node (pretty_printer *buffer, tree node, int spc, int flags, if (TREE_CODE (node) != ERROR_MARK && is_gimple_stmt (node) && (flags & TDF_VOPS) - && stmt_ann (node)) + && stmt_ann (node) + && TREE_CODE (node) != PHI_NODE) dump_vops (buffer, node, spc, flags); if (is_stmt && (flags & TDF_STMTADDR)) |