mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
New testcase.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96391 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ae3ecf9603
commit
08d3561eee
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