Blame test/mpfrieee.awk

Packit 575503
# Test IEEE-754 binary double format
Packit 575503
BEGIN {
Packit 575503
	x = 1.0e-320
Packit 575503
	i = 0
Packit 575503
	while (x > 0) {
Packit 575503
		printf("%.15e\n", x)
Packit 575503
		x /= 2
Packit 575503
Packit 575503
		# terminate early when the test is going to fail.
Packit 575503
		if (++i > 50)
Packit 575503
			break
Packit 575503
	}
Packit 575503
}