diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 2015efae34c69d22cd9be5a6f462a59f6ac4f753..73dfbb4a6a50da618a773719c0d1b1f6a539fa40 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,11 @@
+2004-02-19  Aldy Hernandez  <aldyh@redhat.com>
+ 
+        * 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  <sje@cup.hp.com>
 
 	* 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 17f942bd14062fc65e87426e9e001198fa894515..6d4d42a74ac3e0786f0189e724bf8043e5f79164 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 a10411deb8af2c39bb15c2d50f89317599183c1a..d4a8896f300b5fc1a37c144b2649e224a1aeb16d 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")])