https://gcc.gnu.org/g:1c577ee243221af3844120fc03cfd9122063cc55
commit r16-7409-g1c577ee243221af3844120fc03cfd9122063cc55 Author: Richard Biener <[email protected]> Date: Mon Feb 9 13:13:30 2026 +0100 Silence diagnostics on gcc.dg/torture/pr117567.c The testcase now is diagnosed on s390x which has upped completely peel times limits. It's clearly doing a bogus access at e[-63], but it's a compile-time only test, so silence diagnostics. PR testsuite/124036 * gcc.dg/torture/pr117567.c: Add -w. Diff: --- gcc/testsuite/gcc.dg/torture/pr117567.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/testsuite/gcc.dg/torture/pr117567.c b/gcc/testsuite/gcc.dg/torture/pr117567.c index e9630a524c48..57d4775654e4 100644 --- a/gcc/testsuite/gcc.dg/torture/pr117567.c +++ b/gcc/testsuite/gcc.dg/torture/pr117567.c @@ -1,6 +1,6 @@ /* { dg-do compile } */ /* { dg-require-effective-target int32plus } */ -/* { dg-additional-options "-fwrapv" } */ +/* { dg-additional-options "-fwrapv -w" } */ extern signed char a[]; long b;
