blob: 93a841a8f29dc7222f7af75bcfc3721cbfe42484 [file] [log] [blame]
// RUN: %llvmgcc -S -O0 -g %s -o - | grep DW_TAG_lexical_block | count 3
int foo(int i) {
if (i) {
int j = 2;
}
else {
int j = 3;
}
return i;
}