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