Commit 12fdc099 by Steven Bosscher

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
parent 36ec6d1c
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
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment