aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Law <jlaw@ventanamicro.com>2024-07-25 08:42:04 -0600
committerJeff Law <jlaw@ventanamicro.com>2024-07-25 08:42:04 -0600
commit2dd45655db47362153756261881413b368582597 (patch)
treef220b0c07ee86a63a1954d9e8589ffb756011740
parent66240bfc1cc9c1f1b5a9d0ebf92be70a9ab1be5c (diff)
downloadgcc-2dd45655db47362153756261881413b368582597.zip
gcc-2dd45655db47362153756261881413b368582597.tar.gz
gcc-2dd45655db47362153756261881413b368582597.tar.bz2
[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.
-rw-r--r--gcc/testsuite/gcc.dg/torture/pr116037.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/torture/pr116037.c b/gcc/testsuite/gcc.dg/torture/pr116037.c
index cb34ba4..86ab50d 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;