re PR bootstrap/50352 (arm-linux-gnueabi bootstrap failure due to -Wformat error...
authorJakub Jelinek <jakub@redhat.com>
Mon, 12 Sep 2011 09:33:36 +0000 (11:33 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Mon, 12 Sep 2011 09:33:36 +0000 (11:33 +0200)
PR bootstrap/50352
* config/arm/arm.md (*push_fp_multi): Add % before %( and %) in the
sprintf format string.

From-SVN: r178778

gcc/ChangeLog
gcc/config/arm/arm.md

index ad8f931b8250b23c73ce87834ee4a5020ea5947c..70a7189d9548cab8a7b2e136d59e0c306067ee14 100644 (file)
@@ -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
index 43c7608aad48fdf09daf062396526b9a75a3148b..cd7cb06f45f9a9423a499ded7da2109de70bb1ad 100644 (file)
   {
     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 \"\";
   }"