(zero_extendqidi2): Fix omission of TARGET_POWERPC64 test in previous
authorRichard Kenner <kenner@gcc.gnu.org>
Mon, 16 May 1994 22:57:55 +0000 (18:57 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Mon, 16 May 1994 22:57:55 +0000 (18:57 -0400)
change.

From-SVN: r7317

gcc/config/rs6000/rs6000.md

index 8182137dfc08c61d35627ad7b0f9300bd17df4aa..aeaef4d589f461398c2047b8b6bb629fdb743669 100644 (file)
        (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")])
 
                    (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")])