From: Richard Kenner Date: Mon, 16 May 1994 22:57:55 +0000 (-0400) Subject: (zero_extendqidi2): Fix omission of TARGET_POWERPC64 test in previous X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=58e09803edf76a4ffeae0e151972d08bf86e8771;p=gcc.git (zero_extendqidi2): Fix omission of TARGET_POWERPC64 test in previous change. From-SVN: r7317 --- diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 8182137dfc0..aeaef4d589f 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -273,7 +273,7 @@ (compare:CC (zero_extend:DI (match_operand:QI 1 "gpc_reg_operand" "r")) (const_int 0))) (clobber (match_scratch:DI 2 "=r"))] - "" + "TARGET_POWERPC64" "andi. %2,%1,0xff" [(set_attr "type" "compare")]) @@ -283,7 +283,7 @@ (const_int 0))) (set (match_operand:DI 0 "gpc_reg_operand" "=r") (zero_extend:DI (match_dup 1)))] - "" + "TARGET_POWERPC64" "andi. %0,%1,0xff" [(set_attr "type" "compare")])