You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
386 B
17 lines
386 B
// RUN: %clang_cc1 -debug-info-kind=limited -emit-llvm %s -o - | FileCheck %s
|
|
// Test to check intentionally empty linkage name for a static variable.
|
|
// Radar 7651244.
|
|
static int foo(int a)
|
|
{
|
|
static int b = 1;
|
|
return b+a;
|
|
}
|
|
|
|
int main() {
|
|
int j = foo(1);
|
|
return 0;
|
|
}
|
|
// CHECK: !DIGlobalVariable(name: "b",
|
|
// CHECK-NOT: linkageName:
|
|
// CHECK-SAME: ){{$}}
|