Files
clang-p2996/clang/test/CodeGen/globalinit.c
Chris Lattner e4f0feb534 Fix buggy test
llvm-svn: 44513
2007-12-02 07:46:00 +00:00

15 lines
167 B
C

// RUN: clang -emit-llvm %s
int A[10] = { 1,2,3,4,5 };
extern int x[];
void foo() { x[0] = 1; }
int x[10];
void bar() { x[0] = 1; }
extern int y[];
void *g = y;