diff options
author | Chris Lattner <sabre@nondot.org> | 2007-12-10 19:44:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-12-10 19:44:50 +0000 |
commit | 53ea781156fa0a78acaa939acfe8d4e866af6942 (patch) | |
tree | 87838c95b793a2c8be695bde25e0f651873a16d1 | |
parent | cc23acae84c6d5c37b4805edbcd95ee5d821c400 (diff) |
disable case that makes this fail.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44807 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/globalinit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/globalinit.c b/test/CodeGen/globalinit.c index f47fd5c457..55298bc07e 100644 --- a/test/CodeGen/globalinit.c +++ b/test/CodeGen/globalinit.c @@ -10,7 +10,7 @@ void bar() { x[0] = 1; } extern int y[]; -void *g = y; +//void *g = y; int latin_ptr2len (char *p); int (*mb_ptr2len) (char *p) = latin_ptr2len; |