From: Jan Hubicka Date: Wed, 19 Feb 2003 13:25:32 +0000 (+0100) Subject: * i386.md (cosxf2): Fix conditional. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9e889775d4a5e2593244a12d06e2f0243f134dff;p=gcc.git * i386.md (cosxf2): Fix conditional. From-SVN: r63105 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7bd6a72ce27..07fe801232d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Wed Feb 19 14:22:42 CET 2003 Jan Hubicka + + * i386.md (cosxf2): Fix conditional. + 2003-02-19 Kazu Hirata * config/h8300/h8300.md (extendqisi2): Change to an expander. diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 94206fab766..4bd997ecec5 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -15417,7 +15417,7 @@ (define_insn "cosxf2" [(set (match_operand:XF 0 "register_operand" "=f") (unspec:XF [(match_operand:XF 1 "register_operand" "0")] UNSPEC_COS))] - "! TARGET_NO_FANCY_MATH_387 && TARGET_80387 + "!TARGET_64BIT && ! TARGET_NO_FANCY_MATH_387 && TARGET_80387 && flag_unsafe_math_optimizations" "fcos" [(set_attr "type" "fpspc")