aboutsummaryrefslogtreecommitdiffstats
path: root/test/C++Frontend/2004-03-15-CleanupsAndGotos.cpp
blob: be14b7f639b26bc492ee8ac9c8c55a1428c9464c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null

// Testcase from Bug 291

struct X {
  ~X();
};

void foo() {
  X v;
  
TryAgain: 
  goto TryAgain;
}