Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 -emit-llvm -O0 -g %s -o - | grep DW_TAG_lexical_block | count 3
      2 int foo(int i) {
      3 	if (i) {
      4 		int j = 2;
      5 	}
      6 	else {
      7 		int j = 3;
      8 	}
      9 	return i;
     10 }
     11