diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-12-27 06:28:38 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-12-27 06:28:38 -0500 |
commit | 60614fddd4e527bb9861dd7c5669114ef6661a6b (patch) | |
tree | 9c12f9352180f0d293ff0f3e5544fd72afc6a520 /gcc | |
parent | a61edda5920ea92a2d59c386733e89f4ec127995 (diff) | |
download | gcc-60614fddd4e527bb9861dd7c5669114ef6661a6b.zip gcc-60614fddd4e527bb9861dd7c5669114ef6661a6b.tar.gz gcc-60614fddd4e527bb9861dd7c5669114ef6661a6b.tar.bz2 |
(iordi3): Use ornot for some constant cases.
From-SVN: r6332
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/alpha/alpha.md | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gcc/config/alpha/alpha.md b/gcc/config/alpha/alpha.md index a7c2e9f3..73ab0c6 100644 --- a/gcc/config/alpha/alpha.md +++ b/gcc/config/alpha/alpha.md @@ -611,11 +611,13 @@ [(set_attr "type" "iaddlog")]) (define_insn "iordi3" - [(set (match_operand:DI 0 "register_operand" "=r") - (ior:DI (match_operand:DI 1 "reg_or_0_operand" "%rJ") - (match_operand:DI 2 "reg_or_8bit_operand" "rI")))] + [(set (match_operand:DI 0 "register_operand" "=r,r") + (ior:DI (match_operand:DI 1 "reg_or_0_operand" "%rJ,rJ") + (match_operand:DI 2 "ior_operand" "rI,N")))] "" - "bis %r1,%2,%0" + "@ + bis %r1,%2,%0 + ornot %r1,%N2,%0" [(set_attr "type" "iaddlog")]) (define_insn "one_cmpldi2" |