Revert "testsuite/102690: Only check warning for lp64 in Warray-bounds-16.C"

This reverts commit 0f6eef3980.
This commit is contained in:
Kito Cheng 2022-07-01 17:55:55 +08:00
parent e52592073f
commit 9a33a3e2f7
1 changed files with 1 additions and 1 deletions

View 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 *-*-* } } */
}
};