Blame src/math/pow10l.c

nsz f9d179
#include <stdint.h>
nsz f9d179
#include <stdio.h>
nsz f9d179
#include "util.h"
nsz f9d179
nsz f9d179
static struct l_l t[] = {
nsz f9d179
#if LDBL_MANT_DIG == 53
nsz 4282b0
#include "sanity/pow10.h"
nsz f9d179
nsz 4282b0
#elif LDBL_MANT_DIG == 64
nsz f9d179
#include "sanity/pow10l.h"
nsz 4282b0
nsz f9d179
#endif
nsz f9d179
};
nsz f9d179
nsz f9d179
int main(void)
nsz f9d179
{
nsz d22f4f
	#pragma STDC FENV_ACCESS ON
nsz f9d179
	long double y;
nsz f9d179
	float d;
nsz f9d179
	int e, i, err = 0;
nsz f9d179
	struct l_l *p;
nsz f9d179
nsz f9d179
	for (i = 0; i < sizeof t/sizeof *t; i++) {
nsz f9d179
		p = t + i;
nsz d22f4f
nsz d22f4f
		if (p->r < 0)
nsz d22f4f
			continue;
nsz d22f4f
		fesetround(p->r);
nsz d22f4f
		feclearexcept(FE_ALL_EXCEPT);
nsz f9d179
		y = pow10l(p->x);
nsz d22f4f
		e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW);
nsz d22f4f
nsz f9d179
		if (!checkexcept(e, p->e, p->r)) {
nsz 457b0d
			printf("%s:%d: bad fp exception: %s pow10l(%La)=%La, want %s",
nsz 457b0d
				p->file, p->line, rstr(p->r), p->x, p->y, estr(p->e));
nsz f9d179
			printf(" got %s\n", estr(e));
nsz f9d179
			err++;
nsz f9d179
		}
nsz f9d179
		d = ulperrl(y, p->y, p->dy);
nsz f9d179
		if (!checkulp(d, p->r)) {
nsz 457b0d
			printf("%s:%d: %s pow10l(%La) want %La got %La ulperr %.3f = %a + %a\n",
nsz 457b0d
				p->file, p->line, rstr(p->r), p->x, p->y, y, d, d-p->dy, p->dy);
nsz f9d179
			err++;
nsz f9d179
		}
nsz f9d179
	}
nsz f9d179
	return !!err;
nsz f9d179
}