summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGen/debug-info-extern-unused.c
blob: 8b89eaab27e626002d463d5ab2da1af940b8f98f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// RUN: %clang_cc1 -x c -debug-info-kind=limited -triple bpf-linux-gnu -emit-llvm %s -o - | FileCheck %s

extern char ch;
int test() {
  return 0;
}

int test2() {
  extern char ch2;
  return 0;
}

extern int (*foo)(int);
int test3() {
  return 0;
}

int test4() {
  extern int (*foo2)(int);
  return 0;
}

// CHECK-NOT: distinct !DIGlobalVariable(name: "ch"
// CHECK-NOT: distinct !DIGlobalVariable(name: "ch2"
// CHECK-NOT: distinct !DIGlobalVariable(name: "foo"
// CHECK-NOT: distinct !DIGlobalVariable(name: "foo2"
OpenPOWER on IntegriCloud