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