This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[tree-ssa]: Fix printing of phi nodes


Committed as obvious, it was missed when we added tree_annotations to the
bb's and move from using aux to using it.

2003-08-09  Daniel Berlin  <dberlin@dberlin.org>

	* tree-pretty-print.c (dump_vops): check bb->tree_annotations, not
	bb->aux.

Index: tree-pretty-print.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/Attic/tree-pretty-print.c,v
retrieving revision 1.1.2.34
diff -u -3 -p -r1.1.2.34 tree-pretty-print.c
--- tree-pretty-print.c	23 Jul 2003 16:59:59 -0000	1.1.2.34
+++ tree-pretty-print.c	10 Aug 2003 04:24:48 -0000
@@ -1970,7 +1970,7 @@ dump_vops (output_buffer *buffer, tree s
   varray_type vuses = vuse_ops (stmt);

   bb = bb_for_stmt (stmt);
-  if (bb && bb->index != last_bb && bb->aux)
+  if (bb && bb->index != last_bb && bb->tree_annotations)
     {
       tree phi;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]