Home | History | Annotate | Download | only in CodeGenCXX
      1 // RUN: %clang_cc1 -emit-llvm %s -o -
      2 
      3 // Testcase from Bug 291
      4 
      5 struct X {
      6   ~X();
      7 };
      8 
      9 void foo() {
     10   X v;
     11 
     12 TryAgain:
     13   goto TryAgain;
     14 }
     15