summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/2010-02-15-DbgStaticVar.c
blob: a1bfa62f981eff2f2f4491cd4cfa97d8c554cd13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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:              ){{$}}