diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-05-13 21:49:43 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-05-13 21:49:43 -0400 |
commit | b542afe93fda0423452106e49574a317f787739e (patch) | |
tree | 46b719a81b7701586874a5d639f2136800ecaff6 /gcc | |
parent | 326f06f769f7dcd046871f59eed8fba7ef3147cf (diff) | |
download | gcc-b542afe93fda0423452106e49574a317f787739e.zip gcc-b542afe93fda0423452106e49574a317f787739e.tar.gz gcc-b542afe93fda0423452106e49574a317f787739e.tar.bz2 |
(fix_truncdfsi2, fixuns_truncdfsi2, trunc_call): Fix typo in type of
FIX and UNSIGNED_RIX rtl.
From-SVN: r4444
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/rs6000/rs6000.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 347f097..91bcbab 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -1,5 +1,5 @@ ;;- Machine description for IBM RISC System 6000 (POWER) for GNU C compiler -;; Copyright (C) 1990, 1991 Free Software Foundation, Inc. +;; Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation, Inc. ;; Contributed by Richard Kenner (kenner@nyu.edu) ;; This file is part of GNU CC. @@ -1935,7 +1935,7 @@ (define_expand "fix_truncdfsi2" [(set (match_operand:SI 0 "gpc_reg_operand" "") - (fix:DF (match_operand:DF 1 "gpc_reg_operand" "")))] + (fix:SI (match_operand:DF 1 "gpc_reg_operand" "")))] "" " { @@ -1946,7 +1946,7 @@ (define_expand "fixuns_truncdfsi2" [(set (match_operand:SI 0 "gpc_reg_operand" "") - (unsigned_fix:DF (match_operand:DF 1 "gpc_reg_operand" "")))] + (unsigned_fix:SI (match_operand:DF 1 "gpc_reg_operand" "")))] "" " { @@ -1958,7 +1958,7 @@ (define_expand "trunc_call" [(parallel [(set (match_operand:SI 0 "" "") - (fix:DF (match_operand:DF 1 "" ""))) + (fix:SI (match_operand:DF 1 "" ""))) (use (match_operand:SI 2 "" ""))])] "" " |