2007-10-11 08:18:28 +08:00
|
|
|
// RUN: clang -fsyntax-only -verify %s
|
2007-08-31 01:51:09 +08:00
|
|
|
|
|
|
|
#define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER)
|
|
|
|
|
|
|
|
typedef struct P { int i; float f; } PT;
|
|
|
|
struct external_sun3_core
|
|
|
|
{
|
|
|
|
unsigned c_regs;
|
|
|
|
|
|
|
|
PT X[100];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
void swap()
|
|
|
|
{
|
|
|
|
int x;
|
|
|
|
x = offsetof(struct external_sun3_core, c_regs);
|
|
|
|
x = __builtin_offsetof(struct external_sun3_core, X[42].f);
|
|
|
|
|
|
|
|
x = __builtin_offsetof(struct external_sun3_core, X[42].f2); // expected-error {{no member named 'f2'}}
|
|
|
|
x = __builtin_offsetof(int, X[42].f2); // expected-error {{offsetof requires struct}}
|
2008-01-29 23:56:48 +08:00
|
|
|
|
|
|
|
int a[__builtin_offsetof(struct external_sun3_core, X) == 4 ? 1 : -1];
|
|
|
|
int b[__builtin_offsetof(struct external_sun3_core, X[42]) == 340 ? 1 : -1];
|
2008-01-30 14:46:30 +08:00
|
|
|
int c[__builtin_offsetof(struct external_sun3_core, X[42].f2) == 344 ? 1 : -1]; // expected-error {{no member named 'f2'}}
|
2007-08-31 01:51:09 +08:00
|
|
|
}
|
|
|
|
|
2008-01-30 14:46:30 +08:00
|
|
|
|
|
|
|
struct s1 { int a; };
|
|
|
|
extern int v1[offsetof (struct s1, a) == 0];
|
|
|
|
|
|
|
|
struct s2 { int a; };
|
|
|
|
extern int v2[__INTADDR__ (&((struct s2 *) 0)->a) == 0];
|
|
|
|
|
|
|
|
struct s3 { int a; };
|
|
|
|
extern int v3[__builtin_offsetof(struct s3, a) == 0];
|