aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Driver/driverkit-exceptions.cpp
blob: 2d06d023242bb0edd459ed316a1746fa0c33fbfb (plain)
1
2
3
4
5
6
7
8
// RUN: %clang %s -target x86_64-apple-driverkit19.0 -### 2>&1 | FileCheck %s -check-prefix=DEFAULT
// RUN: %clang %s -target x86_64-apple-driverkit19.0 -fexceptions -### 2>&1 | FileCheck %s -check-prefix=USERPROVIDED

int main() { return 0; }
// DEFAULT-NOT: "-fcxx-exceptions"
// DEFAULT-NOT: "-fexceptions"
// USERPROVIDED: "-fcxx-exceptions"
// USERPROVIDED: "-fexceptions"