blob: 0e2f3c0c97a0ee8809aaa92fa8b6183c8cc31578 (
plain)
1
2
3
4
5
6
7
8
9
|
/* Test INFINITY macro. Test when infinities not supported. */
/* { dg-do compile { target { ! inff } } } */
/* { dg-options "-std=c2x" } */
#include <float.h>
#ifdef INFINITY
#error "INFINITY defined"
#endif
|