1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-01 00:12:50 +01:00
llvm-mirror/test/FrontendC/2010-03-5-LexicalScope.c

11 lines
153 B
C
Raw Normal View History

// RUN: %llvmgcc -S -O0 -g %s -o - | grep DW_TAG_lexical_block | count 3
2010-03-06 00:35:04 +01:00
int foo(int i) {
if (i) {
int j = 2;
}
else {
int j = 3;
}
return i;
}