https://gcc.gnu.org/g:f7389ff9d1d977b14b5245cf4ae535885661e4a9
commit r17-3829-gf7389ff9d1d977b14b5245cf4ae535885661e4a9 Author: Georg-Johann Lay <[email protected]> Date: Tue Sep 1 19:36:12 2026 +0200 Skip sloppy PR121035 test gcc.dg/pr121035.c failed with FAIL: gcc.dg/pr121035.c (test for excess errors) Excess errors: gcc.dg/pr121035.c:92:1: error: incompatible types in 'PHI' argument 1 unsigned int long unsigned int _11 = PHI <0(5), 4294967295(6)> gcc.dg/pr121035.c:92:1: error: type mismatch in binary expression unsigned int unsigned int long unsigned int _6 = g_15 * 4294967294; so the test case assumes int32plus at the least, changed accordingly. gcc/testsuite/ PR testsuite/121035 * gcc.dg/pr121035.c: Require int32plus. Diff: --- gcc/testsuite/gcc.dg/pr121035.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/testsuite/gcc.dg/pr121035.c b/gcc/testsuite/gcc.dg/pr121035.c index fc0edce5d7d3..a0088adac3fe 100644 --- a/gcc/testsuite/gcc.dg/pr121035.c +++ b/gcc/testsuite/gcc.dg/pr121035.c @@ -1,4 +1,4 @@ -/* { dg-do compile } */ +/* { dg-do compile { target { int32plus } } } */ /* { dg-options "-O2 -fgimple" } */ int printf(const char *, ...);
