1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 12:02:58 +02:00
llvm-mirror/test/FrontendC/2010-03-5-LexicalScope.c
Devang Patel b241f6796a Test case for r97851.
llvm-svn: 97852
2010-03-05 23:35:04 +00:00

11 lines
153 B
C

// 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;
}