diff mbox series

[testsuite,pushed] Skip sloppy PR121035 test

Message ID 51bfe49d-c3f5-4fa3-a25e-5af7d839d273@gjlay.de
State New
Headers show
Series [testsuite,pushed] Skip sloppy PR121035 test | expand

Commit Message

Georg-Johann Lay Sept. 1, 2026, 5:39 p.m. UTC
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.

Johann

--
gcc/testsuite/
	PR testsuite/121035
	* gcc.dg/pr121035.c: Require int32plus.
diff mbox series

Patch

diff --git a/gcc/testsuite/gcc.dg/pr121035.c 
b/gcc/testsuite/gcc.dg/pr121035.c
index fc0edce5d7d..a0088adac3f 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 *, ...);