repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang-format] Fix a bug in aligning comments above PPDirective (#72791)
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2005-06-15-ExpandGotoInternalProblem.c
blob
521e69866151514346a069141896dd5d3dbee11e
1
// RUN: %clang_cc1 -std=c99 %s -emit-llvm -o - | \
2
// RUN: opt -O3 -disable-output
3
// PR580
4
5
int
X
,
Y
;
6
int
foo
(
void
) {
7
int
i
;
8
for
(
i
=
0
;
i
<
100
;
i
++ )
9
{
10
break
;
11
i
= (
X
||
Y
) ;
12
}
13
}
14