blob: 2238e0190e3b5f34dfc5f6f3599c97bf564e09ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* { dg-options "-std=gnu99 -O0" } */
/* C99 6.5.8 Relational operators.
C99 6.5.9 Equality operators.
Compare decimal float special values at runtime. */
#define WIDTH 64
#include "compare-special.h"
int
main ()
{
test_compares ();
return 0;
}
|