LegalizeTypes can sometimes have deleted nodes
[oota-llvm.git] / test / C++Frontend / 2004-03-15-CleanupsAndGotos.cpp
index fc5ba356178fc684c45335c0439e32fe79e8002c..9bc70c84ab424feebba2843dd42120ccceb6a36e 100644 (file)
@@ -1,11 +1,14 @@
+// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
+
 // Testcase from Bug 291
+
 struct X {
   ~X();
 };
 
 void foo() {
   X v;
-  
-TryAgain: 
+
+TryAgain:
   goto TryAgain;
 }