From: Michael Meissner Date: Thu, 2 Feb 1995 17:17:47 +0000 (+0000) Subject: Fix typo in smin/smax of floating point. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a81bd72fb2eb9b47074b38a8f62d1870c7df111a;p=gcc.git Fix typo in smin/smax of floating point. From-SVN: r8853 --- diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 4c901cb59b3..558a5764d79 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -2769,7 +2769,7 @@ "TARGET_PPC_GFXOPT" [(set (match_dup 3) (minus:SF (match_dup 1) (match_dup 2))) - (set (match_operand:SF 0 "gpc_reg_operand" "") + (set (match_dup 0) (if_then_else:SF (ge (match_dup 3) (const_int 0)) (match_dup 1) @@ -2797,7 +2797,7 @@ "TARGET_PPC_GFXOPT" [(set (match_dup 3) (minus:SF (match_dup 2) (match_dup 1))) - (set (match_operand:SF 0 "gpc_reg_operand" "") + (set (match_dup 0) (if_then_else:SF (ge (match_dup 3) (const_int 0)) (match_dup 1) @@ -2936,7 +2936,7 @@ "TARGET_PPC_GFXOPT" [(set (match_dup 3) (minus:DF (match_dup 1) (match_dup 2))) - (set (match_operand:DF 0 "gpc_reg_operand" "") + (set (match_dup 0) (if_then_else:DF (ge (match_dup 3) (const_int 0)) (match_dup 1) @@ -2964,7 +2964,7 @@ "TARGET_PPC_GFXOPT" [(set (match_dup 3) (minus:DF (match_dup 2) (match_dup 1))) - (set (match_operand:DF 0 "gpc_reg_operand" "") + (set (match_dup 0) (if_then_else:DF (ge (match_dup 3) (const_int 0)) (match_dup 1)