From: Kito Cheng Date: Fri, 1 Jul 2022 09:55:55 +0000 (+0800) Subject: Revert "testsuite/102690: Only check warning for lp64 in Warray-bounds-16.C" X-Git-Tag: basepoints/gcc-14~5825 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a33a3e2f7517a994410ca33d00052c6d3f86aff;p=thirdparty%2Fgcc.git Revert "testsuite/102690: Only check warning for lp64 in Warray-bounds-16.C" This reverts commit 0f6eef398045deb2a62d18b526831719c7c20c8a. --- diff --git a/gcc/testsuite/g++.dg/warn/Warray-bounds-16.C b/gcc/testsuite/g++.dg/warn/Warray-bounds-16.C index 45a14b19ea3..89cbadb91c7 100644 --- a/gcc/testsuite/g++.dg/warn/Warray-bounds-16.C +++ b/gcc/testsuite/g++.dg/warn/Warray-bounds-16.C @@ -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 *-*-* } } */ } };