netbsd/external/bsd/llvm/dist/clang/test/CodeGen/2007-11-28-GlobalInitializer.c
2014-01-15 10:53:42 +01:00

9 lines
163 B
C

// RUN: %clang_cc1 -emit-llvm %s -o -
// PR1744
typedef struct foo { int x; char *p; } FOO;
extern FOO yy[];
int *y = &((yy + 1)->x);
void *z = &((yy + 1)->x);