Remove printout, realize that instructions in the entry block dominate all
[oota-llvm.git] / test / C++Frontend / 2004-03-15-CleanupsAndGotos.cpp
1 // Testcase from Bug 291
2
3 struct X {
4   ~X();
5 };
6
7 void foo() {
8   X v;
9   
10 TryAgain: 
11   goto TryAgain;
12 }