aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/Wtautological-compare-3.c
blob: 64807b01d594f1fc2dea29ebb8d420d48e6584fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { dg-do compile } */
/* { dg-options "-Wtautological-compare" } */
/* Test we don't warn for floats.  */

struct S { double d; float f; };

void
fn1 (int i, float f, double d, struct S *s, float *fp)
{
  if (f == f);
  if (f != f);
  if (d == d);
  if (d != d);
  if (fp[i] == fp[i]);
  if (fp[i] != fp[i]);
  if (s->f == s->f);
  if (s->f != s->f);
  if (s->d == s->d);
  if (s->d != s->d);
}