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-Tag: misc/cutover-egcs-0~6626 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=58e09803edf76a4ffeae0e151972d08bf86e8771;p=thirdparty%2Fgcc.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 8182137dfc08..aeaef4d589f4 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")])