diff options
author | Jan Hubicka <jh@suse.cz> | 2001-04-14 16:27:23 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2001-04-14 14:27:23 +0000 |
commit | 7c17f55334e125cc20da24f4ab90de48f0cd2e0b (patch) | |
tree | c3b9d362e3a485e6e4190ef7f408533d29b2f776 /gcc/config | |
parent | 81df85c483545d4dc79fb375379ed8a98bb452bc (diff) | |
download | gcc-7c17f55334e125cc20da24f4ab90de48f0cd2e0b.zip gcc-7c17f55334e125cc20da24f4ab90de48f0cd2e0b.tar.gz gcc-7c17f55334e125cc20da24f4ab90de48f0cd2e0b.tar.bz2 |
i386.md (ashldi3_1_rex64): Add 'J' to the constraints
* i386.md (ashldi3_1_rex64): Add 'J' to the constraints
(ashrdi3_1_rex64): Change 'n' constraint to 'J'.
From-SVN: r41356
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/i386/i386.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index a243109..a2ea359 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -10169,7 +10169,7 @@ (define_insn "*ashldi3_1_rex64" [(set (match_operand:DI 0 "nonimmediate_operand" "=rm,r") (ashift:DI (match_operand:DI 1 "nonimmediate_operand" "0,r") - (match_operand:QI 2 "nonmemory_operand" "c,M"))) + (match_operand:QI 2 "nonmemory_operand" "cJ,M"))) (clobber (reg:CC 17))] "TARGET_64BIT && ix86_binary_operator_ok (ASHIFT, DImode, operands)" "* @@ -10933,7 +10933,7 @@ (define_insn "*ashrdi3_1_rex64" [(set (match_operand:DI 0 "nonimmediate_operand" "=rm,rm") (ashiftrt:DI (match_operand:DI 1 "nonimmediate_operand" "0,0") - (match_operand:QI 2 "nonmemory_operand" "n,c"))) + (match_operand:QI 2 "nonmemory_operand" "J,c"))) (clobber (reg:CC 17))] "TARGET_64BIT && ix86_binary_operator_ok (ASHIFTRT, DImode, operands)" "@ |