diff options
| author | Simon Dardis <simon.dardis@imgtec.com> | 2017-05-12 19:55:32 +0000 |
|---|---|---|
| committer | Simon Dardis <simon.dardis@imgtec.com> | 2017-05-12 19:55:32 +0000 |
| commit | e94124804efdd851b876c33e961257484b81dc44 (patch) | |
| tree | 6ab8aad85a970d9b37d1295a5de196ae296865a1 | |
| parent | 517729fb20494b6391a6d1e8b7cd374ef2c29f83 (diff) | |
| download | bcm5719-llvm-e94124804efdd851b876c33e961257484b81dc44.tar.gz bcm5719-llvm-e94124804efdd851b876c33e961257484b81dc44.zip | |
[Sema] Silence buildbot failures introduced by r302935
Attempt to silence buildbot failures by pinning the test to a given
triple rather than the host's triple.
llvm-svn: 302941
| -rw-r--r-- | clang/test/Sema/vector-gcc-compat.c | 2 | ||||
| -rw-r--r-- | clang/test/Sema/vector-gcc-compat.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Sema/vector-gcc-compat.c b/clang/test/Sema/vector-gcc-compat.c index b61f8ed20e5..9eb0569b25f 100644 --- a/clang/test/Sema/vector-gcc-compat.c +++ b/clang/test/Sema/vector-gcc-compat.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 %s -verify -fsyntax-only -Weverything +// RUN: %clang_cc1 %s -verify -fsyntax-only -Weverything -triple x86_64-apple-darwin10 // Test the compatibility of clang's vector extensions with gcc's vector // extensions for C. Notably &&, ||, ?: and ! are not available. diff --git a/clang/test/Sema/vector-gcc-compat.cpp b/clang/test/Sema/vector-gcc-compat.cpp index 9e9bd4d9050..12da314c325 100644 --- a/clang/test/Sema/vector-gcc-compat.cpp +++ b/clang/test/Sema/vector-gcc-compat.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 %s -verify -fsyntax-only -Weverything -std=c++11 +// RUN: %clang_cc1 %s -verify -fsyntax-only -Weverything -std=c++11 -triple x86_64-apple-darwin10 // Test the compatibility of clang++'s vector extensions with g++'s vector // extensions. In comparison to the extensions available in C, the !, ?:, && and |

