From: Andrew Pinski Date: Fri, 5 Dec 2025 21:30:49 +0000 (-0800) Subject: testsuite: Fix pr99782-1.c for targets that don't support int128 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cb9744aa0449b342236b7d584e2f3cdab72ab09b;p=thirdparty%2Fgcc.git testsuite: Fix pr99782-1.c for targets that don't support int128 When I wrote this testcase I forgot to check if the target supports __int128. This adds the simple check. Pushed as obvious after testing the testcase. gcc/testsuite/ChangeLog: * gcc.dg/torture/pr99782-1.c: Require intt128 target. Signed-off-by: Andrew Pinski --- diff --git a/gcc/testsuite/gcc.dg/torture/pr99782-1.c b/gcc/testsuite/gcc.dg/torture/pr99782-1.c index 76aab18f361..bee439ce504 100644 --- a/gcc/testsuite/gcc.dg/torture/pr99782-1.c +++ b/gcc/testsuite/gcc.dg/torture/pr99782-1.c @@ -1,4 +1,5 @@ /* { dg-compile } */ +/* { dg-require-effective-target int128 } */ /* { dg-additional-options "-mapxf" { target { { i?86-*-* x86_64-*-* } && { ! ia32 } } } } */ /* PR middle-end/99782 */