blob: 0f63ff6914b2e7c2f3afeb41796cf2039fc2ebe2 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm -O0 -g %s -o - | grep DW_TAG_lexical_block | count 3
2int foo(int i) {
3 if (i) {
4 int j = 2;
5 }
6 else {
7 int j = 3;
8 }
9 return i;
10}