From 12fdc0990f54eb02eb6a762fcf7982b8ca9eab4a Mon Sep 17 00:00:00 2001 From: Steven Bosscher Date: Fri, 24 Aug 2012 20:25:42 +0000 Subject: [PATCH] tree-ssa-live.c (dump_var_map): Do not dump the partition map of virtual operands. * tree-ssa-live.c (dump_var_map): Do not dump the partition map of virtual operands. From-SVN: r190655 --- gcc/ChangeLog | 5 +++++ gcc/tree-ssa-live.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c5ade978d5c..a51eea229bb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-08-24 Steven Bosscher + + * tree-ssa-live.c (dump_var_map): Do not dump the partition + map of virtual operands. + 2012-08-24 Yuri Rumyantsev * config/i386/i386.c (ia32_multipass_dfa_lookahead) : Add diff --git a/gcc/tree-ssa-live.c b/gcc/tree-ssa-live.c index f4ecaf33a8b..294a5d49861 100644 --- a/gcc/tree-ssa-live.c +++ b/gcc/tree-ssa-live.c @@ -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; -- 2.30.2