commit | eb4c624229bc6ca2fb860e39e26830eb543dc537 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun Dec 02 07:46:00 2007 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun Dec 02 07:46:00 2007 +0000 |
tree | ecc8d8362d52bdbaea0009bf89a7b0fc42beacc9 | |
parent | 21811c72cd673a40c258491dbb1f429017e2ae8b [diff] [blame] |
Fix buggy test git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44513 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/globalinit.c b/test/CodeGen/globalinit.c index dc7cdb9..f08760f 100644 --- a/test/CodeGen/globalinit.c +++ b/test/CodeGen/globalinit.c
@@ -9,6 +9,6 @@ void bar() { x[0] = 1; } -extern int x[]; -void *g = x; +extern int y[]; +void *g = y;