aboutsummaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorAldy Hernandez <aldyh@redhat.com>2004-02-19 18:40:24 +0000
committerAldy Hernandez <aldyh@gcc.gnu.org>2004-02-19 18:40:24 +0000
commitc6e9f0ebd9e10ae5ef71a57968cc034f901a4e25 (patch)
treedd8416eab80ecf54f90a13113ea7cbbf164e6264 /gcc/config
parent919b531db149ec9a5eb8ac9afb722a2eab222817 (diff)
downloadgcc-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.md4
-rw-r--r--gcc/config/rs6000/spe.md4
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")])