view gcc/testsuite/gcc.dg/iec-559-macros-6.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* Test __GCC_IEC_559 and __GCC_IEC_559_COMPLEX macros values.  */
/* { dg-do preprocess } */
/* { dg-options "-fsingle-precision-constant" } */

#ifndef __GCC_IEC_559
# error "__GCC_IEC_559 not defined"
#endif
#ifndef __GCC_IEC_559_COMPLEX
# error "__GCC_IEC_559_COMPLEX not defined"
#endif
#if __GCC_IEC_559_COMPLEX > __GCC_IEC_559
# error "__GCC_IEC_559_COMPLEX > __GCC_IEC_559"
#endif
#if __GCC_IEC_559_COMPLEX < 0
# error "__GCC_IEC_559_COMPLEX < 0"
#endif

#if __GCC_IEC_559 != 0
# error "__GCC_IEC_559 != 0 with -fsingle-precision-constant"
#endif
#if __GCC_IEC_559_COMPLEX != 0
# error "__GCC_IEC_559_COMPLEX != 0 with -fsingle-precision-constant"
#endif