2004-03-08-ReinterpretCastCopy.cpp 2004-03-09-UnmangledBuiltinMethods.cpp 2004-03-15-CleanupsAndGotos.cpp 2004-06-08-LateTemplateInstantiation.cpp 2004-09-27-CompilerCrash.cpp 2004-09-27-DidntEmitTemplate.cpp 2004-11-27-ExceptionCleanupAssertion.cpp 2004-11-27-FriendDefaultArgCrash.cpp 2005-01-03-StaticInitializers.cpp from llvm/test/FrontendC++. llvm-svn: 138157
15 lines
138 B
C++
15 lines
138 B
C++
// RUN: %clang_cc1 -emit-llvm %s -o -
|
|
|
|
// Testcase from Bug 291
|
|
|
|
struct X {
|
|
~X();
|
|
};
|
|
|
|
void foo() {
|
|
X v;
|
|
|
|
TryAgain:
|
|
goto TryAgain;
|
|
}
|