aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Brook <paul@codesourcery.com>2006-05-08 17:13:41 +0000
committerPaul Brook <paul@codesourcery.com>2006-05-08 17:13:41 +0000
commit5797ebbb26b3fd0d52d859619f06c8bd1a702f84 (patch)
tree68569cc44b49217823fd111c407d1613f05b5611
parentdf1fe66190be90b272e34c2fb981c4ce229c6e65 (diff)
2006-05-08 Paul Brook <paul@codesourcery.com>
* gcc/cofnig/arm/arm.c (output_move_vfp): Fix typo. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/csl/sourcerygxx-4_1@113631 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--ChangeLog.csl4
-rw-r--r--gcc/config/arm/arm.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog.csl b/ChangeLog.csl
index 73dda6e5891..9b04b0fb629 100644
--- a/ChangeLog.csl
+++ b/ChangeLog.csl
@@ -1,3 +1,7 @@
+2006-05-08 Paul Brook <paul@codesourcery.com>
+
+ * gcc/cofnig/arm/arm.c (output_move_vfp): Fix typo.
+
2006-05-07 Nathan Sidwell <nathan@codesourcery.com>
* configure.in (TOPLEVEL_CONFIGURE_ARGS): Protect args with active
diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c
index 283066917a3..c151c83b3df 100644
--- a/gcc/config/arm/arm.c
+++ b/gcc/config/arm/arm.c
@@ -9284,7 +9284,7 @@ output_move_vfp (rtx *operands)
load ? "ld" : "st",
dp ? 'd' : 's',
dp ? "P" : "",
- integer_p ? "\\t%@ int" : "");
+ integer_p ? "\t%@ int" : "");
output_asm_insn (buff, ops);
return "";