diff options
| author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-09-12 09:33:36 +0000 |
|---|---|---|
| committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-09-12 09:33:36 +0000 |
| commit | 877cdec9bd6de6cbc584b2dcb9003a164f824eca (patch) | |
| tree | 6fd59b4ca9c05560b1970978c50a4756cb667e2b | |
| parent | 1991698ff992d129f294328e5421b2b556c657b6 (diff) | |
| download | ppe42-gcc-877cdec9bd6de6cbc584b2dcb9003a164f824eca.tar.gz ppe42-gcc-877cdec9bd6de6cbc584b2dcb9003a164f824eca.zip | |
PR bootstrap/50352
* config/arm/arm.md (*push_fp_multi): Add % before %( and %) in the
sprintf format string.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@178778 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/config/arm/arm.md | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ad8f931b825..70a7189d954 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2011-09-12 Jakub Jelinek <jakub@redhat.com> + + PR bootstrap/50352 + * config/arm/arm.md (*push_fp_multi): Add % before %( and %) in the + sprintf format string. + 2011-09-12 Richard Guenther <rguenther@suse.de> PR tree-optimization/50343 diff --git a/gcc/config/arm/arm.md b/gcc/config/arm/arm.md index 43c7608aad4..cd7cb06f45f 100644 --- a/gcc/config/arm/arm.md +++ b/gcc/config/arm/arm.md @@ -10633,7 +10633,7 @@ { char pattern[100]; - sprintf (pattern, \"sfm%(fd%)\\t%%1, %d, [%%m0]!\", XVECLEN (operands[2], 0)); + sprintf (pattern, \"sfm%%(fd%%)\\t%%1, %d, [%%m0]!\", XVECLEN (operands[2], 0)); output_asm_insn (pattern, operands); return \"\"; }" |

