| 1997 | small accumulator, and then calling its rounding procedure. */ |
| 1998 | |
| 1999 | xsum_flt xsum_large_round (xsum_large_accumulator *restrict lacc) |
| 2000 | { |
| 2001 | if (xsum_debug) c_printf("\nROUNDING LARGE ACCUMULATOR\n"); |
| 2002 | |
| 2003 | xsum_large_transfer_to_small (lacc); |
| 2004 | |
| 2005 | return xsum_small_round (&lacc->sacc); |
| 2006 | } |
| 2007 | |
| 2008 | |
| 2009 | /* TRANSFER NUMBER FROM A LARGE ACCUMULATOR TO A SMALL ACCUMULATOR. */ |
nothing calls this directly
no test coverage detected