Commit 7adaa46c by Ira Rosen Committed by Ira Rosen

PR tree-optimization/22029 (and 22135)

        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.

From-SVN: r101548
parent 1966af04
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.
......
......@@ -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))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment