1 /* PR 18050 : bogus warning with -Wsequence-point */
2 /* { dg-do compile } */
3 /* { dg-options "-Wsequence-point" } */
9 void bar(struct x
*, int *);
13 bar(y
++, &y
->i
); /* { dg-warning "operation on 'y' may be undefined" } */
16 void zz(int a
, int *b
)
23 zz(++a
, &a
); /* { dg-bogus "operation on 'a' may be undefined" } */