diff mbox

obvious: don't dump out-of-ssa partitions for virtual operands

Message ID CABu31nO9kud9jgpVbccjETb2KxOc6NYtDHum75ZYAqkhKh1RxA@mail.gmail.com
State New
Headers show

Commit Message

Steven Bosscher Aug. 24, 2012, 9:58 a.m. UTC
... 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.
diff mbox

Patch

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;