mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-23 06:20:25 +08:00
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:
parent
36ec6d1c37
commit
12fdc0990f
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user