xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/2010-02-15-DbgStaticVar.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -g -emit-llvm %s -o - | grep "metadata ..b., metadata ..b., metadata ...,"
2*f4a2713aSLionel Sambuc // Test to check intentionally empty linkage name for a static variable.
3*f4a2713aSLionel Sambuc // Radar 7651244.
4*f4a2713aSLionel Sambuc static int foo(int a)
5*f4a2713aSLionel Sambuc {
6*f4a2713aSLionel Sambuc 	static int b = 1;
7*f4a2713aSLionel Sambuc 	return b+a;
8*f4a2713aSLionel Sambuc }
9*f4a2713aSLionel Sambuc 
10*f4a2713aSLionel Sambuc int main() {
11*f4a2713aSLionel Sambuc 	int j = foo(1);
12*f4a2713aSLionel Sambuc 	return 0;
13*f4a2713aSLionel Sambuc }
14