Commit f54171a0 by Steven Bosscher

Fix accidental commit

From-SVN: r123169
parent c0a78a17
...@@ -2711,18 +2711,13 @@ cond_move_process_if_block (struct ce_if_block *ce_info) ...@@ -2711,18 +2711,13 @@ cond_move_process_if_block (struct ce_if_block *ce_info)
static int static int
process_if_block (struct ce_if_block * ce_info) process_if_block (struct ce_if_block * ce_info)
{ {
/* Only perform the noce transformations before register allocation. if (! reload_completed
They could be made to run later, but this would require a lot of && noce_process_if_block (ce_info))
work, and it doesn't seem to be worth it. */
if (! reload_completed)
{
if (noce_process_if_block (ce_info))
return TRUE; return TRUE;
if (HAVE_conditional_move if (HAVE_conditional_move
&& cond_move_process_if_block (ce_info)) && cond_move_process_if_block (ce_info))
return TRUE; return TRUE;
}
if (HAVE_conditional_execution && reload_completed) if (HAVE_conditional_execution && reload_completed)
{ {
......
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