Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
af764723bf94f8cc7596e2b2f2a97766d188ed98
/
.
/
test
/
CodeGenCXX
/
2004-03-15-CleanupsAndGotos.cpp
blob: 01350c00b9bd19c779d6a0709347c9603c44953c [
file
] [
log
] [
blame
]
Eric Christopher
2368b6a
2011-08-20 00:09:39 +0000
[
diff
] [
blame
]
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
}