summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeroen Dobbelaere <jeroen.dobbelaere@acunia.com>2002-09-20 13:58:49 +0000
committerRichard Earnshaw <rearnsha@gcc.gnu.org>2002-09-20 13:58:49 +0000
commitc1ff6200cc77963109ba2065bea53b8de1e32d99 (patch)
tree701f1c2f4766eadbbccdc3048bccccbbe048bc79 /gcc
parent60b787004834c234f5ce3e7fb5a960d76115d673 (diff)
downloadgcc-c1ff6200cc77963109ba2065bea53b8de1e32d99.tar.gz
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
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/arm/arm.md6
2 files changed, 9 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 001a0c611e6..beb2ced658a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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.
diff --git a/gcc/config/arm/arm.md b/gcc/config/arm/arm.md
index a830462be20..266d0754d77 100644
--- a/gcc/config/arm/arm.md
+++ b/gcc/config/arm/arm.md
@@ -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]));