From: Richard Kenner Date: Mon, 27 Dec 1993 11:28:38 +0000 (-0500) Subject: (iordi3): Use ornot for some constant cases. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=60614fddd4e527bb9861dd7c5669114ef6661a6b;p=gcc.git (iordi3): Use ornot for some constant cases. From-SVN: r6332 --- diff --git a/gcc/config/alpha/alpha.md b/gcc/config/alpha/alpha.md index a7c2e9f3454..73ab0c69246 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"