From 58e09803edf76a4ffeae0e151972d08bf86e8771 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Mon, 16 May 1994 18:57:55 -0400 Subject: [PATCH] (zero_extendqidi2): Fix omission of TARGET_POWERPC64 test in previous change. From-SVN: r7317 --- gcc/config/rs6000/rs6000.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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")]) -- 2.30.2