From 877cdec9bd6de6cbc584b2dcb9003a164f824eca Mon Sep 17 00:00:00 2001 From: jakub Date: Mon, 12 Sep 2011 09:33:36 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 6 ++++++ gcc/config/arm/arm.md | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ad8f931..70a7189 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2011-09-12 Jakub Jelinek + + PR bootstrap/50352 + * config/arm/arm.md (*push_fp_multi): Add % before %( and %) in the + sprintf format string. + 2011-09-12 Richard Guenther PR tree-optimization/50343 diff --git a/gcc/config/arm/arm.md b/gcc/config/arm/arm.md index 43c7608..cd7cb06 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 \"\"; }" -- 2.7.4