13 lines
180 B
C
13 lines
180 B
C
|
// RUN: %clang_cc1 %s -emit-llvm -o -
|
||
|
|
||
|
struct s {
|
||
|
unsigned long int field[0];
|
||
|
};
|
||
|
|
||
|
#define OFFS \
|
||
|
(((char *) &((struct s *) 0)->field[0]) - (char *) 0)
|
||
|
|
||
|
int foo[OFFS];
|
||
|
|
||
|
|