]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/c11-float-3.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / c11-float-3.c
1 /* Test *_NORM_MAX not defined for C11. */
2 /* { dg-do preprocess } */
3 /* { dg-options "-std=c11 -pedantic-errors" } */
4
5 #include <float.h>
6
7 #ifdef FLT_NORM_MAX
8 #error "FLT_NORM_MAX defined"
9 #endif
10
11 #ifdef DBL_NORM_MAX
12 #error "DBL_NORM_MAX defined"
13 #endif
14
15 #ifdef LDBL_NORM_MAX
16 #error "LDBL_NORM_MAX defined"
17 #endif