blob: f44a997cad37c40f3d4a3a088371d1cd682af35c (
plain)
1
2
3
4
5
6
7
|
/* Test __NO_MATH_ERRNO__ is defined with -ffast-math. */
/* { dg-do compile } */
/* { dg-options "-ffast-math" } */
#ifndef __NO_MATH_ERRNO__
#error "__NO_MATH_ERRNO__ not defined"
#endif
|