1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 14:32:51 +01:00
llvm-mirror/test/FrontendC/2010-02-15-DbgStaticVar.c

14 lines
277 B
C
Raw Normal View History

2010-02-16 22:16:08 +01:00
// RUN: %llvmgcc -g -S %s -o - | grep "metadata ..b., metadata ..b., metadata ...,"
// 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;
}