diff options
author | Jim Grosbach <grosbach@apple.com> | 2012-07-09 18:34:21 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2012-07-09 18:34:21 +0000 |
commit | 2987c57924b69f5af7fed5748de6d05d0d5c6e50 (patch) | |
tree | ecb5f4a05fd9dc193fa153daa0498bef45a73c5a /clang/test/CodeGen/struct-matching-constraint.c | |
parent | 984d0ba6b66899d7e40b2b07bb9261c4cf0a16fb (diff) | |
download | bcm5719-llvm-2987c57924b69f5af7fed5748de6d05d0d5c6e50.tar.gz bcm5719-llvm-2987c57924b69f5af7fed5748de6d05d0d5c6e50.zip |
Tests: check for target availability for target-specific tests.
Lots of tests are using an explicit target triple w/o first checking that the
target is actually available. Add a REQUIRES clause to a bunch of them. This should
hopefully unbreak bots which don't configure w/ all targets enabled.
llvm-svn: 159949
Diffstat (limited to 'clang/test/CodeGen/struct-matching-constraint.c')
-rw-r--r-- | clang/test/CodeGen/struct-matching-constraint.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/test/CodeGen/struct-matching-constraint.c b/clang/test/CodeGen/struct-matching-constraint.c index 40c444f2b40..bdd11c8b900 100644 --- a/clang/test/CodeGen/struct-matching-constraint.c +++ b/clang/test/CodeGen/struct-matching-constraint.c @@ -1,3 +1,4 @@ +// REQUIRES: arm-registered-target // RUN: %clang_cc1 -S -emit-llvm -triple armv7a-apple-darwin %s -o /dev/null typedef unsigned short uint16_t; typedef __attribute__((neon_vector_type(8))) uint16_t uint16x8_t; |