From e6e25a5458a2144b6ae815ccb9c70e63c47febd9 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 2 Dec 2007 07:46:00 +0000 Subject: [PATCH] Fix buggy test git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44513 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/globalinit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/CodeGen/globalinit.c b/test/CodeGen/globalinit.c index dc7cdb9c06..f08760f53a 100644 --- a/test/CodeGen/globalinit.c +++ b/test/CodeGen/globalinit.c @@ -9,6 +9,6 @@ int x[10]; void bar() { x[0] = 1; } -extern int x[]; -void *g = x; +extern int y[]; +void *g = y; -- 2.50.1