mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
cf0e11e1cf
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8138 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
173 B
Plaintext
11 lines
173 B
Plaintext
// RUN: llvmg++ -xc++ 2003-08-24-Cleanup.cpp.tr -c -o - | dis | grep 'call void %llvm.unwind'
|
|
|
|
struct S { ~S(); };
|
|
|
|
int mightthrow();
|
|
|
|
int test() {
|
|
S s;
|
|
mightthrow();
|
|
}
|