Commit a32126ad by H.J. Lu Committed by Jeff Law

i386.c (notice_update_cc): No need to check the INT mode for conditional moves…

i386.c (notice_update_cc): No need to check the INT mode for conditional moves since FLOAT conditional...

        * i386.c (notice_update_cc): No need to check the INT mode for
        conditional moves since FLOAT conditional moves don't affect cc0.

From-SVN: r26097
parent ccce12f3
Thu Apr 1 03:48:34 1999 H.J. Lu (hjl@gnu.org)
* i386.c (notice_update_cc): No need to check the INT mode for
conditional moves since FLOAT conditional moves don't affect cc0.
Thu Apr 1 02:17:18 1999 Jeffrey A Law (law@cygnus.com) Thu Apr 1 02:17:18 1999 Jeffrey A Law (law@cygnus.com)
* fixinc/inclhack.def (zzz_ki_syscalls, zzz_time): Fix trigger * fixinc/inclhack.def (zzz_ki_syscalls, zzz_time): Fix trigger
......
...@@ -3937,8 +3937,7 @@ notice_update_cc (exp) ...@@ -3937,8 +3937,7 @@ notice_update_cc (exp)
if (REG_P (SET_DEST (exp)) if (REG_P (SET_DEST (exp))
&& (REG_P (SET_SRC (exp)) || GET_CODE (SET_SRC (exp)) == MEM && (REG_P (SET_SRC (exp)) || GET_CODE (SET_SRC (exp)) == MEM
|| GET_RTX_CLASS (GET_CODE (SET_SRC (exp))) == '<' || GET_RTX_CLASS (GET_CODE (SET_SRC (exp))) == '<'
|| (GET_CODE (SET_SRC (exp)) == IF_THEN_ELSE || GET_CODE (SET_SRC (exp)) == IF_THEN_ELSE))
&& GET_MODE_CLASS (GET_MODE (SET_DEST (exp))) == MODE_INT)))
{ {
if (cc_status.value1 if (cc_status.value1
&& reg_overlap_mentioned_p (SET_DEST (exp), cc_status.value1)) && reg_overlap_mentioned_p (SET_DEST (exp), cc_status.value1))
......
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