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