Commit dc72b313 by Jakub Jelinek Committed by Jakub Jelinek

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
parent ba02d3bc
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
......@@ -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 \"\";
}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment