From 706ff59b9292cba61c36e9377fdaf5fa98da9d9e Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Thu, 25 Jul 2024 08:42:04 -0600 Subject: [PATCH] [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. --- 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 cb34ba4e5d46..86ab50de4b2f 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; -- 2.47.2