diff options
author | Tamar Christina <tamar.christina@arm.com> | 2019-03-04 15:48:49 +0000 |
---|---|---|
committer | Tamar Christina <tnfchris@gcc.gnu.org> | 2019-03-04 15:48:49 +0000 |
commit | 664f54041e00d1cb547461e4bac7965b77bda00a (patch) | |
tree | 9cce0d3a4f26bf23f156e50b82db7019351fc586 | |
parent | 7ac40f3d27547ee3f8850eccb89b86ff670624b8 (diff) | |
download | gcc-664f54041e00d1cb547461e4bac7965b77bda00a.zip gcc-664f54041e00d1cb547461e4bac7965b77bda00a.tar.gz gcc-664f54041e00d1cb547461e4bac7965b77bda00a.tar.bz2 |
AArch64: Make test options_set_10.c not run on native.
The test options_set_10.c shouldn't run when cross compiled.
In addition to gating it on linux I'm also gating it on native now.
gcc/testsuite/ChangeLog:
PR target/88530
* gcc.target/aarch64/options_set_10.c:
From-SVN: r269366
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/aarch64/options_set_10.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index cbcb1a9..4ac5483 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2019-03-04 Tamar Christina <tamar.christina@arm.com> + + PR target/88530 + * gcc.target/aarch64/options_set_10.c: + 2019-03-04 Wilco Dijkstra <wdijkstr@arm.com> PR tree-optimization/89437 diff --git a/gcc/testsuite/gcc.target/aarch64/options_set_10.c b/gcc/testsuite/gcc.target/aarch64/options_set_10.c index 5ffe83c..1fc8aa8 100644 --- a/gcc/testsuite/gcc.target/aarch64/options_set_10.c +++ b/gcc/testsuite/gcc.target/aarch64/options_set_10.c @@ -1,4 +1,4 @@ -/* { dg-do compile { target "aarch64*-*-linux*" } } */ +/* { dg-do compile { target { { aarch64*-*-linux*} && native } } } */ /* { dg-additional-options "-mcpu=native" } */ int main () |