diff options
-rw-r--r-- | gcc/testsuite/gcc.dg/signbit-2.c | 6 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/signbit-5.c | 5 |
2 files changed, 10 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/signbit-2.c b/gcc/testsuite/gcc.dg/signbit-2.c index fc0157c..d8501e9 100644 --- a/gcc/testsuite/gcc.dg/signbit-2.c +++ b/gcc/testsuite/gcc.dg/signbit-2.c @@ -1,6 +1,10 @@ /* { dg-do assemble } */ /* { dg-options "-O3 --save-temps -fdump-tree-optimized" } */ +/* This test does not work when the truth type does not match vector type. */ +/* { dg-additional-options "-mno-avx512f" { target { i?86-*-* x86_64-*-* } } } */ +/* { dg-additional-options "-march=armv8-a" { target aarch64_sve } } */ + #include <stdint.h> void fun1(int32_t *x, int n) @@ -15,5 +19,5 @@ void fun2(int32_t *x, int n) x[i] = (-x[i]) >> 30; } -/* { dg-final { scan-tree-dump-times {\s+>\s+\{ 0, 0, 0, 0 \}} 1 optimized } } */ +/* { dg-final { scan-tree-dump {\s+>\s+\{ 0, 0, 0(, 0)+ \}} optimized } } */ /* { dg-final { scan-tree-dump-not {\s+>>\s+31} optimized } } */ diff --git a/gcc/testsuite/gcc.dg/signbit-5.c b/gcc/testsuite/gcc.dg/signbit-5.c index 22a9270..2b119cd 100644 --- a/gcc/testsuite/gcc.dg/signbit-5.c +++ b/gcc/testsuite/gcc.dg/signbit-5.c @@ -1,6 +1,11 @@ /* { dg-do run } */ /* { dg-options "-O3" } */ +/* This test does not work when the truth type does not match vector type. */ +/* { dg-additional-options "-mno-avx512f" { target { i?86-*-* x86_64-*-* } } } */ +/* { dg-additional-options "-march=armv8-a" { target aarch64_sve } } */ + + #include <stdint.h> #include <limits.h> #include <stdio.h> |