diff options
author | Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org> | 2024-01-29 18:42:44 +0530 |
---|---|---|
committer | Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org> | 2024-01-29 18:42:44 +0530 |
commit | 8a48723daca911f8cb16a459933772989173aa73 (patch) | |
tree | 9420c7ba42f720d6ae52fa011ce1ecad201e539d | |
parent | 7cc2262ec9a410dc56d1c1c6b950c922e14f621d (diff) | |
download | gcc-8a48723daca911f8cb16a459933772989173aa73.zip gcc-8a48723daca911f8cb16a459933772989173aa73.tar.gz gcc-8a48723daca911f8cb16a459933772989173aa73.tar.bz2 |
PR112950: Use #pragma GCC for including arm_sve.h.
gcc/testsuite/ChangeLog:
PR target/112950
* gcc.target/aarch64/sve/acle/general/dupq_5.c: Remove include directive
and instead use #pragma GCC for including arm_sve.h.
-rw-r--r-- | gcc/testsuite/gcc.target/aarch64/sve/acle/general/dupq_5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.target/aarch64/sve/acle/general/dupq_5.c b/gcc/testsuite/gcc.target/aarch64/sve/acle/general/dupq_5.c index 6ae8d4c..e88477b 100644 --- a/gcc/testsuite/gcc.target/aarch64/sve/acle/general/dupq_5.c +++ b/gcc/testsuite/gcc.target/aarch64/sve/acle/general/dupq_5.c @@ -1,7 +1,7 @@ /* { dg-do compile } */ /* { dg-options "-O2 -mlittle-endian" } */ -#include <arm_sve.h> +#pragma GCC aarch64 "arm_sve.h" svint32_t dupq (int x1, int x2, int x3, int x4) |