Summary: Remove REQUIRES-ANY alias lit directive since it is hardly used and can be easily implemented using an OR expression using REQUIRES. Fixup remaining testcases still using REQUIRES-ANY. Reviewers: probinson, jdenny, gparker42 Reviewed By: gparker42 Subscribers: eugenis, asb, rbar, johnrusso, simoncook, sabuasal, niosHD, delcypher, jrtc27, zzheng, edward-jones, rogfer01, MartinMosbeck, brucehoult, the_o, PkmX, jocewei, lenary, s.egerton, pzheng, sameer.abuasal, apazos, luismarques, cfe-commits, #sanitizers, llvm-commits Tags: #llvm, #clang, #sanitizers Differential Revision: https://reviews.llvm.org/D71408
9 lines
415 B
C++
9 lines
415 B
C++
// RUN: %clang -v -o /dev/null -fxray-instrument -fnoxray-link-deps %s -### \
|
|
// RUN: 2>&1 | FileCheck --check-prefix DISABLE %s
|
|
// RUN: %clang -v -o /dev/null -fxray-instrument -fxray-link-deps %s -### \
|
|
// RUN: 2>&1 | FileCheck --check-prefix ENABLE %s
|
|
// ENABLE: clang_rt.xray
|
|
// DISABLE-NOT: clang_rt.xray
|
|
// REQUIRES: linux || freebsd
|
|
// REQUIRES: amd64 || x86_64 || x86_64h || arm || aarch64 || arm64
|