diff mbox series

[committed] Trivial testcase adjustment

Message ID 0ea606e4-b38e-47cc-ab20-1ae41ae83dbb@gmail.com
State New
Headers show
Series [committed] Trivial testcase adjustment | expand

Commit Message

Jeff Law July 25, 2024, 2:44 p.m. UTC
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.



Jeff
commit 2dd45655db47362153756261881413b368582597
Author: Jeff Law <jlaw@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.
diff mbox series

Patch

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;