From c6e9f0ebd9e10ae5ef71a57968cc034f901a4e25 Mon Sep 17 00:00:00 2001 From: Aldy Hernandez Date: Thu, 19 Feb 2004 18:40:24 +0000 Subject: [PATCH] spe.md (spe_fixunssfsi2): Rename to spe_fixuns_truncsfsi2. * config/rs6000/spe.md (spe_fixunssfsi2): Rename to spe_fixuns_truncsfsi2. * config/rs6000/rs6000.md (fixunssfsi2): Rename to fixuns_truncsfsi2. From-SVN: r78114 --- gcc/ChangeLog | 8 ++++++++ gcc/config/rs6000/rs6000.md | 4 ++-- gcc/config/rs6000/spe.md | 4 ++-- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2015efae34c..73dfbb4a6a5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +2004-02-19 Aldy Hernandez + + * config/rs6000/spe.md (spe_fixunssfsi2): Rename to + spe_fixuns_truncsfsi2. + + * config/rs6000/rs6000.md (fixunssfsi2): Rename to + fixuns_truncsfsi2. + 2004-02-19 Steve Ellcey * config/ia64/ia64.h (HARD_REGNO_CALLER_SAVE_MODE): New macro. diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 17f942bd140..6d4d42a74ac 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -4961,9 +4961,9 @@ ;; Conversions to and from floating-point. -(define_expand "fixunssfsi2" +(define_expand "fixuns_truncsfsi2" [(set (match_operand:SI 0 "gpc_reg_operand" "") - (unsigned_fix:SI (fix:SF (match_operand:SF 1 "gpc_reg_operand" ""))))] + (unsigned_fix:SI (match_operand:SF 1 "gpc_reg_operand" "")))] "TARGET_HARD_FLOAT && !TARGET_FPRS" "") diff --git a/gcc/config/rs6000/spe.md b/gcc/config/rs6000/spe.md index a10411deb8a..d4a8896f300 100644 --- a/gcc/config/rs6000/spe.md +++ b/gcc/config/rs6000/spe.md @@ -83,9 +83,9 @@ "efsctuiz %0,%1" [(set_attr "type" "fp")]) -(define_insn "spe_fixunssfsi2" +(define_insn "spe_fixuns_truncsfsi2" [(set (match_operand:SI 0 "gpc_reg_operand" "=r") - (unsigned_fix:SI (fix:SF (match_operand:SF 1 "gpc_reg_operand" "r"))))] + (unsigned_fix:SI (match_operand:SF 1 "gpc_reg_operand" "r")))] "TARGET_HARD_FLOAT && !TARGET_FPRS" "efsctui %0,%1" [(set_attr "type" "fp")]) -- 2.30.2