diff options
author | Chris Lattner <sabre@nondot.org> | 2007-12-02 07:46:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-12-02 07:46:00 +0000 |
commit | e6e25a5458a2144b6ae815ccb9c70e63c47febd9 (patch) | |
tree | ecc8d8362d52bdbaea0009bf89a7b0fc42beacc9 | |
parent | 9a64cf762ed9808b54d0c5be74ce4a47dcff4969 (diff) |
Fix buggy test
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44513 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/globalinit.c | 4 |
1 files 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; |