diff options
author | Srinath Parvathaneni <srinath.parvathaneni@arm.com> | 2019-11-21 17:31:01 +0000 |
---|---|---|
committer | Matthew Malcomson <matmal01@gcc.gnu.org> | 2019-11-21 17:31:01 +0000 |
commit | 8239933547870e66ffcc7a664c271a960e3f791a (patch) | |
tree | 0475992691d500df4182a02be9d6147401a6b641 /gcc | |
parent | b8e724465b5e1e6c479503f219cd725caaa8e781 (diff) | |
download | gcc-8239933547870e66ffcc7a664c271a960e3f791a.zip gcc-8239933547870e66ffcc7a664c271a960e3f791a.tar.gz gcc-8239933547870e66ffcc7a664c271a960e3f791a.tar.bz2 |
[GCC][ARM]: Fix the failing ACLE testcase with correct test directive.
Hello,
This patch fixes arm acle testcase crc_hf_1.c by modifying the compiler
options directive.
Regression tested on arm-none-eabi and found no regressions.
Ok for trunk? If ok, please commit on my behalf, I don't have the commit
rights.
Thanks,
Srinath.
Applied on behalf of Srinath.
gcc/testsuite/ChangeLog:
2019-11-21 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
* gcc.target/arm/acle/crc_hf_1.c: Modify the compiler options directive
from dg-options to dg-additional-options.
From-SVN: r278588
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/arm/acle/crc_hf_1.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index a075a6f..1ae64a6 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2019-11-21 Srinath Parvathaneni <srinath.parvathaneni@arm.com> + + * gcc.target/arm/acle/crc_hf_1.c: Modify the compiler options directive + from dg-options to dg-additional-options. + 2019-11-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> * gcc.c-torture/execute/20030913-1.c: Rename glob to g. diff --git a/gcc/testsuite/gcc.target/arm/acle/crc_hf_1.c b/gcc/testsuite/gcc.target/arm/acle/crc_hf_1.c index e6cbfc0..f1de2bd 100644 --- a/gcc/testsuite/gcc.target/arm/acle/crc_hf_1.c +++ b/gcc/testsuite/gcc.target/arm/acle/crc_hf_1.c @@ -3,7 +3,7 @@ /* { dg-do compile } */ /* { dg-require-effective-target arm_hard_vfp_ok } */ -/* { dg-options "-mfloat-abi=hard -march=armv8-a+simd+crc" } */ +/* { dg-additional-options "-mfloat-abi=hard -march=armv8-a+simd+crc" } */ #include <arm_acle.h> |