From a32126ad0457f7e754ff7ef7fc2cbd18a6331dae Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Thu, 1 Apr 1999 02:53:54 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 5 +++++ gcc/config/i386/i386.c | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 82f1921d415..10817254393 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +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) * fixinc/inclhack.def (zzz_ki_syscalls, zzz_time): Fix trigger diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index e9da36bf12e..aa2ffdaa4c8 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -3937,8 +3937,7 @@ notice_update_cc (exp) if (REG_P (SET_DEST (exp)) && (REG_P (SET_SRC (exp)) || GET_CODE (SET_SRC (exp)) == MEM || GET_RTX_CLASS (GET_CODE (SET_SRC (exp))) == '<' - || (GET_CODE (SET_SRC (exp)) == IF_THEN_ELSE - && GET_MODE_CLASS (GET_MODE (SET_DEST (exp))) == MODE_INT))) + || GET_CODE (SET_SRC (exp)) == IF_THEN_ELSE)) { if (cc_status.value1 && reg_overlap_mentioned_p (SET_DEST (exp), cc_status.value1)) -- 2.30.2