Commit 92e34b67 by Jan Hubicka Committed by Jan Hubicka

* gcse.c (bypass_conditional_jumps): Use single set to obtain set.

From-SVN: r54165
parent e7e9d242
Sun Jun 2 12:11:52 CEST 2002 Jan Hubicka <jh@suse.cz>
* gcse.c (bypass_conditional_jumps): Use single set to obtain set.
2002-06-02 Richard Henderson <rth@redhat.com>
* rtlanal.c (volatile_refs_p): Not automatically true for CALL.
......
......@@ -4541,12 +4541,13 @@ bypass_conditional_jumps ()
insn = NEXT_INSN (insn))
if (GET_CODE (insn) == INSN)
{
rtx set = single_set (insn);
if (setcc)
break;
if (!single_set (insn))
break;
dest = SET_DEST (PATTERN (insn));
dest = SET_DEST (set);
if (GET_MODE_CLASS (GET_MODE (dest)) == MODE_CC)
setcc = insn;
#ifdef HAVE_cc0
......
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