Commit 8d7532d9 by Jeffrey A Law Committed by Jeff Law

rtlanal.c (jmp_uses_reg_or_mem): Fix typo in last change.

        * rtlanal.c (jmp_uses_reg_or_mem): Fix typo in last change.
Fixes various bootstrap problems (hopefully).

From-SVN: r15667
parent 7019d00e
Tue Sep 23 00:59:54 1997 Jeffrey A Law (law@cygnus.com)
* rtlanal.c (jmp_uses_reg_or_mem): Fix typo in last change.
Tue Sep 23 00:42:44 1997 H.J. Lu (hjl@gnu.ai.mit.edu) Tue Sep 23 00:42:44 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
* loop.c (indirect_jump_in_function_p): Return 0 * loop.c (indirect_jump_in_function_p): Return 0
......
...@@ -1933,7 +1933,7 @@ computed_jump_p (insn) ...@@ -1933,7 +1933,7 @@ computed_jump_p (insn)
for (i = len - 1; i >= 0; i--) for (i = len - 1; i >= 0; i--)
if (GET_CODE (XVECEXP (pat, 0, i)) == SET if (GET_CODE (XVECEXP (pat, 0, i)) == SET
&& SET_DEST (XVECEXP (pat, 0, i)) == pc_rtx && SET_DEST (XVECEXP (pat, 0, i)) == pc_rtx
&& jmp_uses_reg_or_mem (SET_SRC (XVECEXP (pat, 0, 1)))) && jmp_uses_reg_or_mem (SET_SRC (XVECEXP (pat, 0, i))))
return 1; return 1;
} }
else if (GET_CODE (pat) == SET else if (GET_CODE (pat) == SET
......
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