view gcc/testsuite/gcc.dg/pr59871.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* PR c/59871 */
/* { dg-do compile } */
/* { dg-options "-Wunused" } */

extern int bar ();

void
foo (int *p, int i)
{
  p[0] = (bar (), 1, bar ()); /* { dg-warning "right-hand operand of comma expression has no effect" } */
  p[1] = (1, bar ()); /* { dg-warning "left-hand operand of comma expression has no effect" } */
  bar (), 1, bar (); /* { dg-warning "right-hand operand of comma expression has no effect" } */
  bar (), 1; /* { dg-warning "right-hand operand of comma expression has no effect" } */
  1, bar (); /* { dg-warning "left-hand operand of comma expression has no effect" } */
  (bar (), 1); /* { dg-warning "right-hand operand of comma expression has no effect" } */
  bar (), 5 * i; /* { dg-warning "right-hand operand of comma expression has no effect" } */
  (bar (), 5 * i); /* { dg-warning "right-hand operand of comma expression has no effect" } */
  (bar (), (bar (), (bar (), (bar (), (bar (), (bar (), (bar (), 7))))))); /* { dg-warning "right-hand operand of comma expression has no effect" } */
  bar (), (bar (), (bar (), (bar (), (bar (), (bar (), (bar (), 7)))))); /* { dg-warning "right-hand operand of comma expression has no effect" } */
  bar (), (bar (), (bar (), (bar (), (bar (), (bar (), (7, bar ())))))); /* { dg-warning "left-hand operand of comma expression has no effect" } */
  (bar (), (bar (), (bar (), (bar (), (bar (), (bar (), (7, bar ()))))))); /* { dg-warning "left-hand operand of comma expression has no effect" } */
}