repo.or.cz
/
llvm
/
zpu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed some bugs.
[llvm/zpu.git]
/
test
/
FrontendC
/
2010-03-5-LexicalScope.c
blob
93a841a8f29dc7222f7af75bcfc3721cbfe42484
1
// RUN: %llvmgcc -S -O0 -g %s -o - | grep DW_TAG_lexical_block | count 3
2
int
foo
(
int
i
) {
3
if
(
i
) {
4
int
j
=
2
;
5
}
6
else
{
7
int
j
=
3
;
8
}
9
return
i
;
10
}