blob: 5e9319c5daca434ad3168a8a9a83419af8cde1e0 [file] [log] [blame]
// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - -fcxx-exceptions -fexceptions | FileCheck %s
struct X { };
const X g();
void f() {
try {
throw g();
// CHECK: @_ZTI1X
} catch (const X x) {
}
}
void h() {
try {
throw "ABC";
// CHECK: @_ZTIPKc
} catch (char const(&)[4]) {
}
}