From: Jeff Law Date: Thu, 25 Jul 2024 14:42:04 +0000 (-0600) Subject: [committed] Trivial testcase adjustment X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=706ff59b9292cba61c36e9377fdaf5fa98da9d9e;p=thirdparty%2Fgcc.git [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. --- 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;