From 97fec57be0b2e44ff3a182c02ab3470b7cf0fb4d Mon Sep 17 00:00:00 2001 From: uros Date: Fri, 24 Dec 2004 06:49:34 +0000 Subject: [PATCH] * config/i386/i386.md (*fix_trunc{d,s,h}i_1): Rename to *fix_trunc{d,s,h}i_i387. (fix_trunc{d,s}fdi2): Reorder tests. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@92586 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 6 ++++++ gcc/config/i386/i386.md | 12 ++++++------ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0bd56df3496..b5070138192 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2004-12-24 Uros Bizjak + + * config/i386/i386.md (*fix_trunc{d,s,h}i_1): + Rename to *fix_trunc{d,s,h}i_i387. + (fix_trunc{d,s}fdi2): Reorder tests. + 2004-12-24 Daniel Berlin Fix PR debug/14638 diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 17835c7e0df..c03622665d7 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -3997,7 +3997,7 @@ [(parallel [(set (match_operand:DI 0 "nonimmediate_operand" "") (fix:DI (match_operand:DF 1 "register_operand" ""))) (clobber (reg:CC FLAGS_REG))])] - "TARGET_80387 || (TARGET_SSE2 && TARGET_64BIT)" + "TARGET_80387 || (TARGET_64BIT && TARGET_SSE2)" { if (TARGET_64BIT && TARGET_SSE2) { @@ -4013,9 +4013,9 @@ [(parallel [(set (match_operand:DI 0 "nonimmediate_operand" "") (fix:DI (match_operand:SF 1 "register_operand" ""))) (clobber (reg:CC FLAGS_REG))])] - "TARGET_80387 || (TARGET_SSE && TARGET_64BIT)" + "TARGET_80387 || (TARGET_64BIT && TARGET_SSE)" { - if (TARGET_SSE && TARGET_64BIT) + if (TARGET_64BIT && TARGET_SSE) { rtx out = REG_P (operands[0]) ? operands[0] : gen_reg_rtx (DImode); emit_insn (gen_fix_truncsfdi_sse (out, operands[1])); @@ -4027,7 +4027,7 @@ ;; See the comments in i386.h near OPTIMIZE_MODE_SWITCHING for the description ;; of the machinery. -(define_insn_and_split "*fix_truncdi_1" +(define_insn_and_split "*fix_truncdi_i387" [(set (match_operand:DI 0 "nonimmediate_operand" "=m,?r") (fix:DI (match_operand 1 "register_operand" "f,f"))) (clobber (reg:CC FLAGS_REG))] @@ -4195,7 +4195,7 @@ ;; See the comments in i386.h near OPTIMIZE_MODE_SWITCHING for the description ;; of the machinery. -(define_insn_and_split "*fix_truncsi_1" +(define_insn_and_split "*fix_truncsi_i387" [(set (match_operand:SI 0 "nonimmediate_operand" "=m,?r") (fix:SI (match_operand 1 "register_operand" "f,f"))) (clobber (reg:CC FLAGS_REG))] @@ -4339,7 +4339,7 @@ ;; See the comments in i386.h near OPTIMIZE_MODE_SWITCHING for the description ;; of the machinery. -(define_insn_and_split "*fix_trunchi_1" +(define_insn_and_split "*fix_trunchi_i387" [(set (match_operand:HI 0 "nonimmediate_operand" "=m,?r") (fix:HI (match_operand 1 "register_operand" "f,f"))) (clobber (reg:CC FLAGS_REG))] -- 2.11.4.GIT