aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/arm/arm.md2
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 36a4342..fa45629 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2007-08-04 Richard Sandiford <richard@codesourcery.com>
+
+ * config/arm/arm.md (movsi): Add braces.
+
2007-08-04 Andrew Pinski <andrew_pinski@playstation.sony.com>
PR middle-end/32780
diff --git a/gcc/config/arm/arm.md b/gcc/config/arm/arm.md
index 4d9745b..88c3ac4 100644
--- a/gcc/config/arm/arm.md
+++ b/gcc/config/arm/arm.md
@@ -4655,6 +4655,7 @@
(match_operand:SI 1 "general_operand" ""))]
"TARGET_EITHER"
"
+ {
rtx base, offset, tmp;
if (TARGET_32BIT)
@@ -4728,6 +4729,7 @@
(!can_create_pseudo_p ()
? operands[0]
: 0));
+ }
"
)