summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/2005-03-05-OffsetOfHack.c
blob: 442098107504b306a6b1bd99f8a5d2d06a94414c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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];