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