1 /* { dg-warning "this target does not support" } */
2 /* { dg-do run { target { *-*-darwin* } } } */
3 /* { dg-options { -fsection-anchors -O } } */
7 static const int d
= 1;
8 static const struct a b
= {};
9 static const int c
= 1;
10 int f(const int *, const struct a
*, const int*, const int*);
13 return f(&c
, &b
, &d
, &c
);
16 int f(const int *b
, const struct a
*c
, const int *d
, const int *e
) {