mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 07:06:06 +00:00

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
8 lines
237 B
C
8 lines
237 B
C
// REQUIRES: arm-registered-target
|
|
// RUN: %clang_cc1 -triple armv7-apple-darwin9 -emit-llvm -w -o - %s | FileCheck %s
|
|
|
|
void t1 (void *f, int g) {
|
|
// CHECK: call void asm "str $1, $0", "=*Q,r"
|
|
asm("str %1, %0" : "=Q"(f) : "r"(g));
|
|
}
|