blob: 690303545f5ed4b0b2378684cf8ddb9b23d36c39 [file] [log] [blame]
Chris Lattnercf0e11e2003-08-24 20:23:21 +00001// RUN: llvmg++ -xc++ 2003-08-24-Cleanup.cpp.tr -c -o - | dis | grep 'call void %llvm.unwind'
2
3struct S { ~S(); };
4
5int mightthrow();
6
7int test() {
8 S s;
9 mightthrow();
10}