aboutsummaryrefslogtreecommitdiffstats
path: root/test/C++Frontend/2003-08-24-Cleanup.cpp.tr
blob: b27aef40cbd96dd2694c196188d2f7e4843dc8f8 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: llvmg++ -xc++ %s -c -o - | llvm-dis | grep unwind

struct S { ~S(); };

int mightthrow();

int test() {
  S s;
  mightthrow();
}