blob: ab0d1a0d11cd79c893ff8deba4089a84e50293df [file] [log] [blame]
John Criswell5bbd65c2003-09-30 19:56:36 +00001// RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | grep unwind
Chris Lattnerb7955612003-08-24 20:23:21 +00002
3struct S { ~S(); };
4
5int mightthrow();
6
7int test() {
8 S s;
9 mightthrow();
10}