mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
369d3391d8
llvm-svn: 104953
11 lines
153 B
C
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;
|
|
}
|