blob: ab0d1a0d11cd79c893ff8deba4089a84e50293df [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | grep unwind
2
3struct S { ~S(); };
4
5int mightthrow();
6
7int test() {
8 S s;
9 mightthrow();
10}