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

This is the second patch that upstreams the support for Apple's DriverKit. The first patch: https://reviews.llvm.org/D118046. Differential Revision: https://reviews.llvm.org/D121911
9 lines
200 B
C++
9 lines
200 B
C++
// REQUIRES: x86-registered-target
|
|
// RUN: %clang %s -target x86_64-apple-driverkit19.0 -fsyntax-only
|
|
|
|
#if __cplusplus != 201703L
|
|
#error DriverKit should be on C++17.
|
|
#endif
|
|
|
|
int main() { return 0; }
|