summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/float-range-1.c
blob: e14e345aba301f43d40f7f9a144b583ac743d71b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Floating constants outside the range of their type should receive a
   pedwarn, not a warning.  */
/* Origin: Joseph Myers <jsm@polyomino.org.uk> */
/* { dg-do compile } */
/* { dg-options "-ansi -pedantic-errors" } */

void
f (void)
{
  float a = 1e+100000000f; /* { dg-error "error: floating constant exceeds range of 'float'" } */
  double b = 1e+100000000; /* { dg-error "error: floating constant exceeds range of 'double'" } */
  long double c = 1e+100000000l; /* { dg-error "error: floating constant exceeds range of 'long double'" } */
}