This reverts commit d618f1c3b12effd0c2bdb7d02108d3551f389d3d. This commit wasn't reviewed ahead of time and significant concerns were raised immediately after it landed. According to our developer policy this warrants immediate revert of the commit. https://llvm.org/docs/DeveloperPolicy.html#patch-reversion-policy Differential Revision: https://reviews.llvm.org/D155509
24 lines
886 B
C
24 lines
886 B
C
// RUN: %clang_cc1 -dwarf-version=4 -debug-info-kind=limited -disable-llvm-passes -emit-llvm < %s | FileCheck %s
|
|
// RUN: %clang_cc1 -dwarf-version=4 -debug-info-kind=line-tables-only -disable-llvm-passes -emit-llvm < %s | FileCheck --check-prefix=GMLT %s
|
|
// RUN: %clang_cc1 -dwarf-version=4 -debug-info-kind=line-directives-only -disable-llvm-passes -emit-llvm < %s | FileCheck --check-prefix=GMLT %s
|
|
// Two variables with same name in separate scope.
|
|
// Radar 8330217.
|
|
int main(void) {
|
|
int j = 0;
|
|
int k = 0;
|
|
// CHECK: !DILocalVariable(name: "i"
|
|
// CHECK-NEXT: !DILexicalBlock(
|
|
|
|
// Make sure we don't have any more lexical blocks because we don't need them in
|
|
// -gmlt.
|
|
// GMLT-NOT: !DILexicalBlock
|
|
for (int i = 0; i < 10; i++)
|
|
j++;
|
|
// CHECK: !DILocalVariable(name: "i"
|
|
// CHECK-NEXT: !DILexicalBlock(
|
|
// GMLT-NOT: !DILexicalBlock
|
|
for (int i = 0; i < 10; i++)
|
|
k++;
|
|
return 0;
|
|
}
|