diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-05-16 18:57:55 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-05-16 18:57:55 -0400 |
commit | 58e09803edf76a4ffeae0e151972d08bf86e8771 (patch) | |
tree | 84a7b8209141e1c735ec2a1eb4415c7ad11d7a24 | |
parent | adc3b521ec92c1fa2ca86ddb13a01f0e524eda1f (diff) | |
download | gcc-58e09803edf76a4ffeae0e151972d08bf86e8771.zip gcc-58e09803edf76a4ffeae0e151972d08bf86e8771.tar.gz gcc-58e09803edf76a4ffeae0e151972d08bf86e8771.tar.bz2 |
(zero_extendqidi2): Fix omission of TARGET_POWERPC64 test in previous
change.
From-SVN: r7317
-rw-r--r-- | gcc/config/rs6000/rs6000.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 8182137..aeaef4d 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")]) |