Restore the behavior of frame lowering before my refactoring.
[oota-llvm.git] / test / FrontendC++ / 2003-08-24-Cleanup.cpp
1 // RUN: %llvmgxx -xc++ %s -S -o - | grep unwind
2
3 struct S { ~S(); };
4
5 int mightthrow();
6
7 int test() {
8   S s;
9   mightthrow();
10 }