diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2004-02-19 18:40:24 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2004-02-19 18:40:24 +0000 |
commit | c6e9f0ebd9e10ae5ef71a57968cc034f901a4e25 (patch) | |
tree | dd8416eab80ecf54f90a13113ea7cbbf164e6264 /gcc/config | |
parent | 919b531db149ec9a5eb8ac9afb722a2eab222817 (diff) | |
download | gcc-c6e9f0ebd9e10ae5ef71a57968cc034f901a4e25.zip gcc-c6e9f0ebd9e10ae5ef71a57968cc034f901a4e25.tar.gz gcc-c6e9f0ebd9e10ae5ef71a57968cc034f901a4e25.tar.bz2 |
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
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/rs6000/rs6000.md | 4 | ||||
-rw-r--r-- | gcc/config/rs6000/spe.md | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 17f942b..6d4d42a 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 a10411d..d4a8896 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")]) |