Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/gcc/testsuite/gcc.dg/reciprocal-math-1.c
2023-03-06 14:48:14 +01:00

17 lines
443 B
C

/* Test __RECIPROCAL_MATH__ is defined with -freciprocal-math. */
/* { dg-do compile } */
/* { dg-options "-freciprocal-math" } */
#ifndef __RECIPROCAL_MATH__
#error "__RECIPROCAL_MATH__ not defined"
#endif
#pragma GCC optimize "-fno-reciprocal-math"
#ifdef __RECIPROCAL_MATH__
#error "__RECIPROCAL_MATH__ defined"
#endif
#pragma GCC optimize "-freciprocal-math"
#ifndef __RECIPROCAL_MATH__
#error "__RECIPROCAL_MATH__ not defined"
#endif