diff options
Diffstat (limited to 'test/FrontendC++/2004-03-15-CleanupsAndGotos.cpp')
-rw-r--r-- | test/FrontendC++/2004-03-15-CleanupsAndGotos.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/FrontendC++/2004-03-15-CleanupsAndGotos.cpp b/test/FrontendC++/2004-03-15-CleanupsAndGotos.cpp deleted file mode 100644 index c2e52f6..0000000 --- a/test/FrontendC++/2004-03-15-CleanupsAndGotos.cpp +++ /dev/null @@ -1,14 +0,0 @@ -// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null - -// Testcase from Bug 291 - -struct X { - ~X(); -}; - -void foo() { - X v; - -TryAgain: - goto TryAgain; -} |