blob: 17f42da5c877d55cd221e6248944166a16f22e87 (
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=c23" } */
#include <float.h>
#ifdef INFINITY
#error "INFINITY defined"
#endif
|