tree-ssa-live.c (dump_var_map): Do not dump the partition map of virtual operands.
authorSteven Bosscher <steven@gcc.gnu.org>
Fri, 24 Aug 2012 20:25:42 +0000 (20:25 +0000)
committerSteven Bosscher <steven@gcc.gnu.org>
Fri, 24 Aug 2012 20:25:42 +0000 (20:25 +0000)
* tree-ssa-live.c (dump_var_map): Do not dump the partition
map of virtual operands.

From-SVN: r190655

gcc/ChangeLog
gcc/tree-ssa-live.c

index c5ade978d5c804493fdadaeaab2c3f51dbd6b943..a51eea229bba4fd20c4dcb09ceefc286e55d63f8 100644 (file)
@@ -1,3 +1,8 @@
+2012-08-24  Steven Bosscher  <steven@gcc.gnu.org>
+
+       * tree-ssa-live.c (dump_var_map): Do not dump the partition
+       map of virtual operands.
+
 2012-08-24  Yuri Rumyantsev  <ysrumyan@gmail.com>
 
        * config/i386/i386.c (ia32_multipass_dfa_lookahead) : Add
index f4ecaf33a8b503a01d26cb762b69f9482f581f74..294a5d4986133c356a36d9d2aacefa45ac5f5dfa 100644 (file)
@@ -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;