18 lines · plain
1// RUN: %clang -fexceptions -emit-llvm -x objc++-cpp-output -S %s -o /dev/null2// RUN: %clang -fexceptions -emit-llvm -x objc++-cpp-output -S %s -o /dev/null -### 2>&1 | FileCheck %s3 4// PR138205// REQUIRES: LP646 7// Should compile without errors8@protocol P9- (void)m;10@end11void f() {}12class C {};13 14// Make sure the driver is passing all the necessary exception flags.15// CHECK: "-fobjc-exceptions"16// CHECK: "-fcxx-exceptions"17// CHECK: "-fexceptions" 18