aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@bitrange.com>2002-03-18 01:20:14 +0000
committerHans-Peter Nilsson <hp@gcc.gnu.org>2002-03-18 01:20:14 +0000
commit6f7c00fe3423564af915f47b79bab7b28dcbb158 (patch)
treedda2429692b4d034ae8ad84e0193d9b346034118
parent720d42faffdcdba131c6e87579585c97cee70d37 (diff)
downloadgcc-6f7c00fe3423564af915f47b79bab7b28dcbb158.zip
gcc-6f7c00fe3423564af915f47b79bab7b28dcbb158.tar.gz
gcc-6f7c00fe3423564af915f47b79bab7b28dcbb158.tar.bz2
mmix.md ("fixuns_truncdfdi2"): Use (unsigned_fix:DI (unsigned_fix:DF op1)), not (unsigned_fix:DI (fix:DF op1)).
* config/mmix/mmix.md ("fixuns_truncdfdi2"): Use (unsigned_fix:DI (unsigned_fix:DF op1)), not (unsigned_fix:DI (fix:DF op1)). From-SVN: r50940
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/mmix/mmix.md2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 944033f..acd64f1 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2002-03-17 Hans-Peter Nilsson <hp@bitrange.com>
+
+ * config/mmix/mmix.md ("fixuns_truncdfdi2"): Use (unsigned_fix:DI
+ (unsigned_fix:DF op1)), not (unsigned_fix:DI (fix:DF op1)).
+
2002-03-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* ifcvt.c (dead_or_predicable): Fix uninitialized variable.
diff --git a/gcc/config/mmix/mmix.md b/gcc/config/mmix/mmix.md
index 93dd3b0..793d3af 100644
--- a/gcc/config/mmix/mmix.md
+++ b/gcc/config/mmix/mmix.md
@@ -569,7 +569,7 @@ DIVU %1,%1,%2\;GET %0,:rR\;NEGU %2,0,%0\;CSNN %0,$255,%2")
(define_insn "fixuns_truncdfdi2"
[(set (match_operand:DI 0 "register_operand" "=r")
(unsigned_fix:DI
- (fix:DF (match_operand:DF 1 "register_operand" "r"))))]
+ (unsigned_fix:DF (match_operand:DF 1 "register_operand" "r"))))]
""
;; ROUND_OFF
"FIXU %0,1,%1")