aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/Wfloat-equal-1.c
blob: 36b3fa53f3f66ff0e2ad3593694badc24c1f2be9 (plain)
1
2
3
4
5
6
7
8
9
10
/* PR c/19999 */
/* { dg-do compile } */
/* { dg-options "-Wfloat-equal" } */

double a, b;
_Complex double c, d;
int f(void) { return a == b; } /* { dg-warning "comparing floating point" } */
int g(void) { return c == d; } /* { dg-warning "comparing floating point" } */
int h(void) { return a != b; } /* { dg-warning "comparing floating point" } */
int i(void) { return c != d; } /* { dg-warning "comparing floating point" } */