From: Jakub Jelinek Date: Mon, 12 Sep 2011 09:33:36 +0000 (+0200) Subject: re PR bootstrap/50352 (arm-linux-gnueabi bootstrap failure due to -Wformat error... X-Git-Tag: releases/gcc-4.7.0~3814 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dc72b3137af4ee3ab261e1437a243d07600e18e9;p=thirdparty%2Fgcc.git re PR bootstrap/50352 (arm-linux-gnueabi bootstrap failure due to -Wformat error in arm.md) PR bootstrap/50352 * config/arm/arm.md (*push_fp_multi): Add % before %( and %) in the sprintf format string. From-SVN: r178778 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ad8f931b8250..70a7189d9548 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 43c7608aad48..cd7cb06f45f9 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 \"\"; }"