From 08d3561eee78a09101c014e81a3e916653b274e9 Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Tue, 16 Feb 2010 21:16:08 +0000 Subject: [PATCH] New testcase. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96391 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/FrontendC/2010-02-15-DbgStaticVar.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test/FrontendC/2010-02-15-DbgStaticVar.c diff --git a/test/FrontendC/2010-02-15-DbgStaticVar.c b/test/FrontendC/2010-02-15-DbgStaticVar.c new file mode 100644 index 00000000000..7827d96ce61 --- /dev/null +++ b/test/FrontendC/2010-02-15-DbgStaticVar.c @@ -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; +} -- 2.34.1