Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
3641e811729fc7f21039af595d62bc8e696ff407
/
.
/
test
/
FrontendC
/
2005-06-15-ExpandGotoInternalProblem.c
blob: 0f076c9bf79f1709d898d9bce5d93ed9eae7db4a [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -std=c99 %s -S -o - | \
// RUN: opt -std-compile-opts -disable-output
// PR580
int
X
,
Y
;
int
foo
()
{
int
i
;
for
(
i
=
0
;
i
<
100
;
i
++
)
{
break
;
i
=
(
X
||
Y
)
;
}
}