aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC/2010-02-15-DbgStaticVar.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2010-02-15-DbgStaticVar.c')
-rw-r--r--test/FrontendC/2010-02-15-DbgStaticVar.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/FrontendC/2010-02-15-DbgStaticVar.c b/test/FrontendC/2010-02-15-DbgStaticVar.c
deleted file mode 100644
index 7827d96..0000000
--- a/test/FrontendC/2010-02-15-DbgStaticVar.c
+++ /dev/null
@@ -1,13 +0,0 @@
-// 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;
-}