Commit b94544e4 by Alexandre Oliva Committed by Alexandre Oliva

sh.c (split_branches): Don't dereference re-computed `beyond' before checking it's non-NULL.

* config/sh/sh.c (split_branches): Don't dereference re-computed
`beyond' before checking it's non-NULL.

From-SVN: r38554
parent d05e34f2
2000-12-30 Alexandre Oliva <aoliva@redhat.com>
* config/sh/sh.c (split_branches): Don't dereference re-computed
`beyond' before checking it's non-NULL.
2000-12-29 Robert Lipe <robertl@sco.com>
......
......@@ -3489,8 +3489,8 @@ split_branches (first)
if (beyond
&& (GET_CODE (beyond) == JUMP_INSN
|| (GET_CODE (beyond = next_active_insn (beyond))
== JUMP_INSN))
|| ((beyond = next_active_insn (beyond))
&& GET_CODE (beyond) == JUMP_INSN))
&& GET_CODE (PATTERN (beyond)) == SET
&& recog_memoized (beyond) == CODE_FOR_jump
&& ((INSN_ADDRESSES
......
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