1 #include <stdint.h>
2 #include <stdio.h>
3 #include "mtest.h"
4
5 static struct f_i t[] = {
6 #include "sanity/ilogbf.h"
7 #include "special/ilogbf.h"
8
9 };
10
main(void)11 int main(void)
12 {
13 #pragma STDC FENV_ACCESS ON
14 long long yi;
15 int e, i, err = 0;
16 struct f_i *p;
17
18 for (i = 0; i < sizeof t/sizeof *t; i++) {
19 p = t + i;
20
21 if (p->r < 0)
22 continue;
23 fesetround(p->r);
24 feclearexcept(FE_ALL_EXCEPT);
25 yi = ilogbf(p->x);
26 e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW);
27
28 #ifndef __aarch64__
29 if (!checkexcept(e, p->e, p->r)) {
30 printf("%s:%d: bad fp exception: %s ilogbf(%a)=%lld, want %s",
31 p->file, p->line, rstr(p->r), p->x, p->i, estr(p->e));
32 printf(" got %s\n", estr(e));
33 err++;
34 }
35 #endif
36 if (yi != p->i) {
37 printf("%s:%d: %s ilogbf(%a) want %lld got %lld\n",
38 p->file, p->line, rstr(p->r), p->x, p->i, yi);
39 err++;
40 }
41 }
42 return !!err;
43 }
44