blob: 3f54f5e0abe95ea6635f8eb19f74b6736a34f9c2 [file] [log] [blame]
John Criswell2bcb2de2003-09-30 19:28:26 +00001// RUN: %gxx -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}