(root)/
gcc-13.2.0/
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