Commit 96647293 by Steven Bosscher

ifcvt.c (cond_exec_find_if_block): Return FALSE if no transformations are applied successfully.

	* ifcvt.c (cond_exec_find_if_block): Return FALSE if no
	transformations are applied successfully.

From-SVN: r123289
parent ee753a0a
2007-03-28 Steven Bosscher <steven@gcc.gnu.org>
* ifcvt.c (cond_exec_find_if_block): Return FALSE if no
transformations are applied successfully.
2007-03-27 Douglas Gregor <doug.gregor@gmail.com> 2007-03-27 Douglas Gregor <doug.gregor@gmail.com>
* tree.c (tree_contains_struct): Permit 512 tree codes. * tree.c (tree_contains_struct): Permit 512 tree codes.
......
...@@ -3236,6 +3236,8 @@ cond_exec_find_if_block (struct ce_if_block * ce_info) ...@@ -3236,6 +3236,8 @@ cond_exec_find_if_block (struct ce_if_block * ce_info)
if (cond_exec_process_if_block (ce_info, FALSE)) if (cond_exec_process_if_block (ce_info, FALSE))
return TRUE; return TRUE;
} }
return FALSE;
} }
/* Convert a branch over a trap, or a branch /* Convert a branch over a trap, or a branch
......
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