brintos

brintos / llvm-project-archived public Read only

0
0
Text · 378 B · 2d06d02 Raw
9 lines · cpp
1// RUN: %clang %s -target x86_64-apple-driverkit19.0 -### 2>&1 | FileCheck %s -check-prefix=DEFAULT2// RUN: %clang %s -target x86_64-apple-driverkit19.0 -fexceptions -### 2>&1 | FileCheck %s -check-prefix=USERPROVIDED3 4int main() { return 0; }5// DEFAULT-NOT: "-fcxx-exceptions"6// DEFAULT-NOT: "-fexceptions"7// USERPROVIDED: "-fcxx-exceptions"8// USERPROVIDED: "-fexceptions"9