Commitd77ae1552f("[DebugInfo] Support to emit debugInfo for extern variables") added deebugInfo for extern variables for BPF target. The commit is reverted by891e25b02das the committed tests using %clang instead of %clang_cc1 causing test failed in certain scenarios as reported by Reid Kleckner. This patch fixed the tests by using %clang_cc1. Differential Revision: https://reviews.llvm.org/D71818
11 lines
331 B
C
11 lines
331 B
C
// RUN: %clang_cc1 -x c -debug-info-kind=limited -triple bpf-linux-gnu -emit-llvm %s -o - | FileCheck %s
|
|
|
|
extern char ch;
|
|
extern char ch;
|
|
int test() {
|
|
return ch;
|
|
}
|
|
|
|
// CHECK: distinct !DIGlobalVariable(name: "ch",{{.*}} type: ![[T:[0-9]+]], isLocal: false, isDefinition: false
|
|
// CHECK-NOT: distinct !DIGlobalVariable(name: "ch"
|