re PR c/78768 (-Walloca-larger-than and -Wformat-length warnings disabled by -flto)
authorRichard Biener <rguenther@suse.de>
Wed, 10 Jan 2018 14:51:07 +0000 (14:51 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Wed, 10 Jan 2018 14:51:07 +0000 (14:51 +0000)
2018-01-10  Richard Biener  <rguenther@suse.de>

PR testsuite/78768
* gcc.dg/pr78768.c: Un-XFAIL.

From-SVN: r256430

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr78768.c

index bac4032a57e9b78ba5be20e400919069a7ec4ed1..f99a83ddd78336abcc89e278e05ffe55af0f0797 100644 (file)
@@ -1,3 +1,8 @@
+2018-01-10  Richard Biener  <rguenther@suse.de>
+
+       PR testsuite/78768
+       * gcc.dg/pr78768.c: Un-XFAIL.
+
 2018-01-10  Richard Biener  <rguenther@suse.de>
 
        PR debug/82425
index b6cda47c6a8823ddd28ad789cc60d0eb2f4f5ed6..72ac3f871294698bd3099f1d38c5ecc0cbff61c9 100644 (file)
@@ -9,7 +9,7 @@ int main (void)
 {
   char *d = (char *)__builtin_alloca (12);  /* { dg-warning "argument to .alloca. is too large" } */
 
-  __builtin_sprintf (d, "%32s", "x");   /* { dg-warning "directive writing 32 bytes into a region of size 12" "-Wformat-overflow" { xfail *-*-* } } */
+  __builtin_sprintf (d, "%32s", "x");   /* { dg-warning "directive writing 32 bytes into a region of size 12" "-Wformat-overflow" } */
 
   return 0;
 }