Commit d3907945 by Jeff Law

jump.c (jump_optimize, [...]): Do this regardless of BRANCH_COST if HAVE_incscc…

jump.c (jump_optimize, [...]): Do this regardless of BRANCH_COST if HAVE_incscc or HAVE_decscc is defined.

	* jump.c (jump_optimize, clause for `if (foo) b++'):
	Do this regardless of BRANCH_COST if HAVE_incscc or
	HAVE_decscc is defined.

From-SVN: r3694
parent 5329e227
...@@ -1192,8 +1192,9 @@ jump_optimize (f, cross_jump, noop_moves, after_regscan) ...@@ -1192,8 +1192,9 @@ jump_optimize (f, cross_jump, noop_moves, after_regscan)
TEMP4 to the earliest insn used to find the condition. */ TEMP4 to the earliest insn used to find the condition. */
if ((BRANCH_COST >= 2 if ((BRANCH_COST >= 2
#ifdef HAVE_incscc #if defined (HAVE_incscc) || defined (HAVE_decscc)
|| HAVE_incscc || HAVE_incscc
|| HAVE_decscc
#endif #endif
) )
&& ! reload_completed && ! 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