(sminsf, smindf, smaxsf, smaxdf): Should be minsf, etc.
authorRichard Kenner <kenner@gcc.gnu.org>
Tue, 13 Apr 1993 20:34:37 +0000 (16:34 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Tue, 13 Apr 1993 20:34:37 +0000 (16:34 -0400)
From-SVN: r4131

gcc/config/alpha/alpha.md

index 02af736f107cb67710563addc8b68d8154a5b26d..3fbf75d758b0a162174ca1d0c09be9481c0f00b2 100644 (file)
                                       (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" "")))
    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" "")))
 { 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" "")))
 { 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" ""))))
 { 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" ""))))