1*2f04e703SEgor Zhdan // REQUIRES: x86-registered-target
2*2f04e703SEgor Zhdan // RUN: %clang %s -target x86_64-apple-driverkit19.0 -### 2>&1 | FileCheck %s -check-prefix=DEFAULT
3*2f04e703SEgor Zhdan // RUN: %clang %s -target x86_64-apple-driverkit19.0 -fexceptions -### 2>&1 | FileCheck %s -check-prefix=USERPROVIDED
4*2f04e703SEgor Zhdan
main()5*2f04e703SEgor Zhdan int main() { return 0; }
6*2f04e703SEgor Zhdan // DEFAULT-NOT: "-fcxx-exceptions"
7*2f04e703SEgor Zhdan // DEFAULT-NOT: "-fexceptions"
8*2f04e703SEgor Zhdan // USERPROVIDED: "-fcxx-exceptions"
9*2f04e703SEgor Zhdan // USERPROVIDED: "-fexceptions"
10