mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
New testcase.
llvm-svn: 96391
This commit is contained in:
parent
ee44d6a752
commit
1b865d88f9
13
test/FrontendC/2010-02-15-DbgStaticVar.c
Normal file
13
test/FrontendC/2010-02-15-DbgStaticVar.c
Normal file
@ -0,0 +1,13 @@
|
||||
// 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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user