diff options
author | Christophe Lyon <christophe.lyon@linaro.org> | 2018-01-18 09:13:27 +0000 |
---|---|---|
committer | Christophe Lyon <clyon@gcc.gnu.org> | 2018-01-18 10:13:27 +0100 |
commit | f2f4f2442c02a8ea6ad0f01cebe0705c442dc816 (patch) | |
tree | cf1a72c0c3f3689e932b9d6fa9cbcef8b48a1703 | |
parent | 8ae438811f695dd025fb1fef254bff920777b494 (diff) | |
download | gcc-f2f4f2442c02a8ea6ad0f01cebe0705c442dc816.zip gcc-f2f4f2442c02a8ea6ad0f01cebe0705c442dc816.tar.gz gcc-f2f4f2442c02a8ea6ad0f01cebe0705c442dc816.tar.bz2 |
[arm] Fix gcc.target/arm/pr40887.c directives
2018-01-18 Christophe Lyon <christophe.lyon@linaro.org>
* gcc.target/arm/pr40887.c: Fix dg-options and dg-add-options
order.
From-SVN: r256839
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/arm/pr40887.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 014a15d..8c86f3c 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2018-01-18 Christophe Lyon <christophe.lyon@linaro.org> + + * gcc.target/arm/pr40887.c: Fix dg-options and dg-add-options + order. + 2018-01-18 Jakub Jelinek <jakub@redhat.com> PR c/61240 diff --git a/gcc/testsuite/gcc.target/arm/pr40887.c b/gcc/testsuite/gcc.target/arm/pr40887.c index 5343a7b..8c91cd9 100644 --- a/gcc/testsuite/gcc.target/arm/pr40887.c +++ b/gcc/testsuite/gcc.target/arm/pr40887.c @@ -1,8 +1,8 @@ /* { dg-do compile } */ /* { dg-skip-if "need at least armv5" { *-*-* } { "-march=armv[234]*" } { "" } } */ /* { dg-require-effective-target arm_arch_v5te_ok } */ -/* { dg-add-options arm_arch_v5te } */ /* { dg-options "-O2" } */ +/* { dg-add-options arm_arch_v5te } */ /* { dg-final { scan-assembler "blx" } } */ int (*indirect_func)(int x); |