mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-21 15:30:02 +08:00
Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com> * config/arm/arm.md (sign_extract_onebit, not_signextract_onebit): Add clobber of the condition code register. From-SVN: r57347
This commit is contained in:
parent
60b7870048
commit
c1ff6200cc
@ -1,3 +1,8 @@
|
||||
2002-09-20 Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
|
||||
|
||||
* config/arm/arm.md (sign_extract_onebit, not_signextract_onebit):
|
||||
Add clobber of the condition code register.
|
||||
|
||||
2002-09-20 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* real.c (do_fix_trunc): Static.
|
||||
|
@ -8869,7 +8869,8 @@
|
||||
[(set (match_operand:SI 0 "s_register_operand" "=r")
|
||||
(sign_extract:SI (match_operand:SI 1 "s_register_operand" "r")
|
||||
(const_int 1)
|
||||
(match_operand:SI 2 "const_int_operand" "n")))]
|
||||
(match_operand:SI 2 "const_int_operand" "n")))
|
||||
(clobber (reg:CC CC_REGNUM))]
|
||||
"TARGET_ARM"
|
||||
"*
|
||||
operands[2] = GEN_INT (1 << INTVAL (operands[2]));
|
||||
@ -8885,7 +8886,8 @@
|
||||
(not:SI
|
||||
(sign_extract:SI (match_operand:SI 1 "s_register_operand" "r")
|
||||
(const_int 1)
|
||||
(match_operand:SI 2 "const_int_operand" "n"))))]
|
||||
(match_operand:SI 2 "const_int_operand" "n"))))
|
||||
(clobber (reg:CC CC_REGNUM))]
|
||||
"TARGET_ARM"
|
||||
"*
|
||||
operands[2] = GEN_INT (1 << INTVAL (operands[2]));
|
||||
|
Loading…
Reference in New Issue
Block a user