This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[patch] obvious: don't dump out-of-ssa partitions for virtual operands
- From: Steven Bosscher <stevenb dot gcc at gmail dot com>
- To: GCC Patches <gcc-patches at gcc dot gnu dot org>
- Date: Fri, 24 Aug 2012 11:58:46 +0200
- Subject: [patch] obvious: don't dump out-of-ssa partitions for virtual operands
... because they're not partitioned anyway, so they just confuse the dumps:
Will bootstrap&test, and commit if nothing strange shows up.
Ciao!
Steven
* tree-ssa-live.c (dump_var_map): Do not dump the partition
map of virtual operands.
Index: tree-ssa-live.c
===================================================================
--- tree-ssa-live.c (revision 190601)
+++ tree-ssa-live.c (working copy)
@@ -1140,7 +1140,8 @@ dump_var_map (FILE *f, var_map map)
else
p = x;
- if (ssa_name (p) == NULL_TREE)
+ if (ssa_name (p) == NULL_TREE
+ || virtual_operand_p (ssa_name (p)))
continue;
t = 0;