mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 13:36:08 +00:00

Conversion was performed using https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34 plus manual (but uninteresting) fixups.
22 lines
326 B
C++
22 lines
326 B
C++
// 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]) {
|
|
}
|
|
}
|