diff mbox

Fix objsz folded stmt dumping

Message ID alpine.LNX.2.00.1109271205330.2130@zhemvz.fhfr.qr
State New
Headers show

Commit Message

Richard Biener Sept. 27, 2011, 10:06 a.m. UTC
I noticed we dump the original statement twice since tuples.

Fixed as obvious.

Richard.

2011-09-27  Richard Guenther  <rguenther@suse.de>

	* tree-object-size.c (compute_object_sizes): Fix dumping of
	folded statement.
diff mbox

Patch

Index: gcc/tree-object-size.c
===================================================================
--- gcc/tree-object-size.c	(revision 179200)
+++ gcc/tree-object-size.c	(working copy)
@@ -1250,13 +1250,10 @@  compute_object_sizes (void)
 	  if (!update_call_from_tree (&i, result))
 	    gcc_unreachable ();
 
-          /* NOTE: In the pre-tuples code, we called update_stmt here.  This is
-             now handled by gsi_replace, called from update_call_from_tree.  */
-
 	  if (dump_file && (dump_flags & TDF_DETAILS))
 	    {
 	      fprintf (dump_file, "to\n  ");
-	      print_gimple_stmt (dump_file, call, 0, dump_flags);
+	      print_gimple_stmt (dump_file, gsi_stmt (i), 0, dump_flags);
 	      fprintf (dump_file, "\n");
 	    }
 	}