mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
be773f9253
llvm-svn: 104876
11 lines
153 B
C
11 lines
153 B
C
// RUN: %llvmgcc -S -O0 -g %s -o - | grep DW_TAG_lexical_block | count 2
|
|
int foo(int i) {
|
|
if (i) {
|
|
int j = 2;
|
|
}
|
|
else {
|
|
int j = 3;
|
|
}
|
|
return i;
|
|
}
|