Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
      2 // CHECK: !DILexicalBlock(
      3 // CHECK: !DILexicalBlock(
      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