]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/c90-const-expr-9.c
large-size-array-2.c: Fix target requirement.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / c90-const-expr-9.c
CommitLineData
928c19bb
JM
1/* Test for constant expressions: __builtin_offsetof allowed in
2 integer constant expressions but not traditional offsetof
3 expansion. */
4/* Origin: Joseph Myers <joseph@codesourcery.com> */
5/* { dg-do compile } */
6/* { dg-options "-std=iso9899:1990 -pedantic-errors" } */
7
8struct s {
9 int a;
10};
11
12struct t {
13 struct s a;
14 int b[2];
15};
16
60adb641
OS
17__extension__ typedef __SIZE_TYPE__ size_t;
18
19#define old_offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
928c19bb
JM
20
21enum e {
22 E1 = old_offsetof (struct s, a), /* { dg-error "constant" } */
23 E2 = old_offsetof (struct t, a.a), /* { dg-error "constant" } */
24 E3 = old_offsetof (struct t, b[1]), /* { dg-error "constant" } */
25 E4 = __builtin_offsetof (struct s, a),
26 E5 = __builtin_offsetof (struct t, a.a),
27 E6 = __builtin_offsetof (struct t, b[1])
28};