]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Revert "testsuite/102690: Only check warning for lp64 in Warray-bounds-16.C"
authorKito Cheng <kito.cheng@sifive.com>
Fri, 1 Jul 2022 09:55:55 +0000 (17:55 +0800)
committerKito Cheng <kito.cheng@sifive.com>
Fri, 1 Jul 2022 09:55:55 +0000 (17:55 +0800)
This reverts commit 0f6eef398045deb2a62d18b526831719c7c20c8a.

gcc/testsuite/g++.dg/warn/Warray-bounds-16.C

index 45a14b19ea3d5dbd522b03afdc1d25f58d56af68..89cbadb91c7b91fb8422624ec2454d0e60768b77 100644 (file)
@@ -19,7 +19,7 @@ struct S
     p = (int*) new unsigned char [sizeof (int) * m];
 
     for (int i = 0; i < m; i++)
-      new (p + i) int (); /* { dg-bogus "bounds" "pr102690" { xfail lp64 } } */
+      new (p + i) int (); /* { dg-bogus "bounds" "pr102690" { xfail *-*-* } } */
   }
 };