diff options
author | Andrew Pinski <quic_apinski@quicinc.com> | 2024-09-07 16:20:03 -0700 |
---|---|---|
committer | Andrew Pinski <quic_apinski@quicinc.com> | 2024-09-07 16:22:52 -0700 |
commit | 35c2bcb2389d345a0b9eaa6c8c6a400a6442a037 (patch) | |
tree | cc80931a0a79f35eb767157683e2e4d0eeeae633 | |
parent | 7cebc6384a0ad63d444029472a8ed1afe965bbbc (diff) | |
download | gcc-35c2bcb2389d345a0b9eaa6c8c6a400a6442a037.zip gcc-35c2bcb2389d345a0b9eaa6c8c6a400a6442a037.tar.gz gcc-35c2bcb2389d345a0b9eaa6c8c6a400a6442a037.tar.bz2 |
Fix pr116588.c for -m32
This is a simple fix which adds the target supports requirement of int128
to the testcase too.
Pushed as obvious after testing to make sure the testcase is UNSUPPORTED now
with -m32 but working with -m64 on x86_64-linux-gnu.
gcc/testsuite/ChangeLog:
* gcc.dg/pr116588.c: Require int128.
Signed-off-by: Andrew Pinski <quic_apinski@quicinc.com>
-rw-r--r-- | gcc/testsuite/gcc.dg/pr116588.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/pr116588.c b/gcc/testsuite/gcc.dg/pr116588.c index 677964d..6b0678d 100644 --- a/gcc/testsuite/gcc.dg/pr116588.c +++ b/gcc/testsuite/gcc.dg/pr116588.c @@ -1,5 +1,6 @@ /* PR tree-optimization/116588 */ /* { dg-do run { target bitint575 } } */ +/* { dg-require-effective-target int128 } */ /* { dg-options "-O2 -fno-vect-cost-model -fno-tree-dominator-opts -fno-tree-fre --param=vrp-block-limit=0 -DDEBUG -fdump-tree-vrp2-details" } */ int a; |