X86MCInstLower::Lower should only not emit anything to OutStreamer,
[llvm/avr.git] / test / FrontendC++ / 2004-03-15-CleanupsAndGotos.cpp
blobc2e52f66dce35c0d2b3dd9fdae9e6340685cf111
1 // RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
3 // Testcase from Bug 291
5 struct X {
6 ~X();
7 };
9 void foo() {
10 X v;
12 TryAgain:
13 goto TryAgain;