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
This commit is contained in:
Steven Bosscher 2012-08-24 20:25:42 +00:00
parent 36ec6d1c37
commit 12fdc0990f
2 changed files with 7 additions and 1 deletions

View 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

View 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;