Fixed some bugs.
[llvm/zpu.git] / test / FrontendC / 2010-03-5-LexicalScope.c
blob93a841a8f29dc7222f7af75bcfc3721cbfe42484
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;
6 else {
7 int j = 3;
9 return i;