diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-04-13 16:34:37 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-04-13 16:34:37 -0400 |
commit | f1644e9a37d983fe117b6383f901a10ed37ec88e (patch) | |
tree | 07c4772bef6d127bd2620ca594fc73c0d8f82512 /gcc | |
parent | b1aa345d4f691a9a9dce12226983539e98866a84 (diff) | |
download | gcc-f1644e9a37d983fe117b6383f901a10ed37ec88e.zip gcc-f1644e9a37d983fe117b6383f901a10ed37ec88e.tar.gz gcc-f1644e9a37d983fe117b6383f901a10ed37ec88e.tar.bz2 |
(sminsf, smindf, smaxsf, smaxdf): Should be minsf, etc.
From-SVN: r4131
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/alpha/alpha.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/alpha/alpha.md b/gcc/config/alpha/alpha.md index 02af736..3fbf75d 100644 --- a/gcc/config/alpha/alpha.md +++ b/gcc/config/alpha/alpha.md @@ -1365,7 +1365,7 @@ (match_dup 0) (match_dup 1)))] "") -(define_expand "smaxdi3" +(define_expand "maxdi3" [(set (match_dup 3) (le:DI (match_operand:DI 1 "reg_or_0_operand" "") (match_operand:DI 2 "reg_or_8bit_operand" ""))) @@ -1665,7 +1665,7 @@ fcmov%D3 %R4,%R5,%0" [(set_attr "type" "fpop")]) -(define_expand "smaxdf3" +(define_expand "maxdf3" [(set (match_dup 3) (le:DF (match_operand:DF 1 "reg_or_fp0_operand" "") (match_operand:DF 2 "reg_or_fp0_operand" ""))) @@ -1677,7 +1677,7 @@ { operands[3] = gen_reg_rtx (DFmode); }") -(define_expand "smindf3" +(define_expand "mindf3" [(set (match_dup 3) (lt:DF (match_operand:DF 1 "reg_or_fp0_operand" "") (match_operand:DF 2 "reg_or_fp0_operand" ""))) @@ -1689,7 +1689,7 @@ { operands[3] = gen_reg_rtx (DFmode); }") -(define_expand "smaxsf3" +(define_expand "maxsf3" [(set (match_dup 3) (le:DF (match_operand:SF 1 "reg_or_fp0_operand" "") (float_extend:DF (match_operand:SF 2 "reg_or_fp0_operand" "")))) @@ -1701,7 +1701,7 @@ { operands[3] = gen_reg_rtx (SFmode); }") -(define_expand "sminsf3" +(define_expand "minsf3" [(set (match_dup 3) (lt:DF (match_operand:SF 1 "reg_or_fp0_operand" "") (float_extend:DF (match_operand:SF 2 "reg_or_fp0_operand" "")))) |