diff options
Diffstat (limited to 'test/CodeGen/globalinit.c')
-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 55298bc07e..f47fd5c457 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; |