https://gcc.gnu.org/g:16d1997090340cd587c85450983bf545245dc5bf
commit 16d1997090340cd587c85450983bf545245dc5bf Author: Jeff Law <j...@ventanamicro.com> Date: Thu Jul 25 08:42:04 2024 -0600 [committed] Trivial testcase adjustment I made pr116037.c dependent on int32 just based on the constants used without noting the int128 vector type. Naturally on targets that don't support int128 the test fails. Fixed by changing the target selector from int32 to int128. Pushed to the trunk. gcc/testsuite * gcc.dg/torture/pr116037.c: Fix target selector. (cherry picked from commit 2dd45655db47362153756261881413b368582597) Diff: --- gcc/testsuite/gcc.dg/torture/pr116037.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/testsuite/gcc.dg/torture/pr116037.c b/gcc/testsuite/gcc.dg/torture/pr116037.c index cb34ba4e5d4..86ab50de4b2 100644 --- a/gcc/testsuite/gcc.dg/torture/pr116037.c +++ b/gcc/testsuite/gcc.dg/torture/pr116037.c @@ -1,5 +1,5 @@ /* { dg-do run } */ -/* { dg-require-effective-target int32 } */ +/* { dg-require-effective-target int128 } */ /* { dg-additional-options "-Wno-psabi" } */ typedef __attribute__((__vector_size__ (64))) unsigned char VC;