[LoopVectorizer] Add support for chaining partial reductions (#120272)
[llvm-project.git] / clang / test / Driver / xros-driver-requires-darwin-host.c
blobe5bfccae2c20922675d58646d2bc644a2ca9723d
1 // REQUIRES: system-darwin
3 // RUN: env XROS_DEPLOYMENT_TARGET=1.0 %clang -arch arm64 -c -### %s 2>&1 | FileCheck %s
5 // RUN: rm -rf %t.dir
6 // RUN: mkdir -p %t.dir/XROS1.0.sdk
7 // RUN: %clang -arch arm64 -isysroot %t.dir/XROS1.0.sdk -c -### %s 2>&1 | FileCheck %s
8 // RUN: mkdir -p %t.dir/XRSimulator1.0.sdk
9 // RUN: %clang -arch arm64 -isysroot %t.dir/XRSimulator1.0.sdk -c -### %s 2>&1 | FileCheck --check-prefix=CHECK_SIM %s
12 // CHECK: "-cc1"{{.*}} "-triple" "arm64-apple-xros1.0.0"
13 // CHECK_SIM: "-cc1"{{.*}} "-triple" "arm64-apple-xros1.0.0-simulator"