diff options
Diffstat (limited to 'llvm/test/C++Frontend/2004-03-15-CleanupsAndGotos.cpp')
-rw-r--r-- | llvm/test/C++Frontend/2004-03-15-CleanupsAndGotos.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/llvm/test/C++Frontend/2004-03-15-CleanupsAndGotos.cpp b/llvm/test/C++Frontend/2004-03-15-CleanupsAndGotos.cpp deleted file mode 100644 index 9bc70c84ab4..00000000000 --- a/llvm/test/C++Frontend/2004-03-15-CleanupsAndGotos.cpp +++ /dev/null @@ -1,14 +0,0 @@ -// 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; -} |