Chris Lattner | a61b19b | 2003-09-29 22:17:12 +0000 | [diff] [blame] | 1 | // RUN: llvmg++ -xc++ %s -c -o - | llvm-dis | grep unwind |
Chris Lattner | cf0e11e | 2003-08-24 20:23:21 +0000 | [diff] [blame] | 2 | |
3 | struct S { ~S(); }; | ||||
4 | |||||
5 | int mightthrow(); | ||||
6 | |||||
7 | int test() { | ||||
8 | S s; | ||||
9 | mightthrow(); | ||||
10 | } |