summaryrefslogtreecommitdiff
path: root/test/Driver/objc++-cpp-output.mm
blob: a42f7b255780e10438e3f26c64c36bec9bc66876 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// RUN: %clang -emit-llvm -x objc++-cpp-output -S %s -o /dev/null
// RUN: %clang -emit-llvm -x objc++-cpp-output -S %s -o /dev/null -### 2>&1 | FileCheck %s

// PR13820
// REQUIRES: LP64

// Should compile without errors
@protocol P
- (void)m;
@end
void f() {}
class C {};

// Make sure the driver is passing all the necessary exception flags.
// CHECK: "-fobjc-exceptions"
// CHECK: "-fcxx-exceptions"
// CHECK: "-fexceptions"