aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/Wunused-value-1.c
blob: 0fc7c364ba812309b1f8fe1510c5f92261c7eed7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* Test -Wunused-value.  Bug 23113.  */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "-Wunused-value" } */

int f (void);
void g (void);
int *p;

void
h (void)
{
  1 + f (); /* { dg-warning "value computed is not used" } */
  f () + f (); /* { dg-warning "value computed is not used" } */
  f () + f (), f (); /* { dg-warning "value computed is not used" } */
  (char) f (); /* { dg-warning "value computed is not used" } */
  g ();
  f ();
  (void) f ();
  *p++; /* { dg-warning "value computed is not used" } */
  ++*p;
  (*p ? f() : 0);
  ({ f(); });
  /* Statement expressions may be used in macro expansions which like
     functions return values which may or may not be of use, so don't
     warn for them but do warn inside them.  */
  ({ f() + 1; });
  ({ f(); 0; });
  ({ f() + 1; 0; }); /* { dg-warning "value computed is not used" } */
  1 + ({ f(); }); /* { dg-warning "value computed is not used" } */
}