Functions with fixed precision */
| 393 | |
| 394 | /* Functions with fixed precision */ |
| 395 | static void fp_move(fpdata *a, fpdata *b, int prec) |
| 396 | { |
| 397 | SETPREC |
| 398 | a->fpx = floatx80_move(b->fpx, &fs); |
| 399 | RESETPREC |
| 400 | } |
| 401 | static void fp_abs(fpdata *a, fpdata *b, int prec) |
| 402 | { |
| 403 | SETPREC |
nothing calls this directly
no test coverage detected