Nikita Popov 3512721d52 [CodeGenCXX] Convert more tests to opaque pointers (NFC)
Conversion was performed using
https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34
plus manual (but uninteresting) fixups.
2022-10-07 10:01:17 +02:00

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]) {
}
}