John Criswell | be34f0d | 2003-09-30 19:56:36 +0000 | [diff] [blame] | 1 | // RUN: %llvmgxx -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 | } |