| 1981 | /* NEGATE THE VALUE IN A LARGE ACCUMULATOR. */ |
| 1982 | |
| 1983 | void xsum_large_negate (xsum_large_accumulator *restrict lacc) |
| 1984 | { |
| 1985 | if (xsum_debug) c_printf("\nNEGATING A LARGE ACCUMULATOR\n"); |
| 1986 | |
| 1987 | xsum_large_transfer_to_small (lacc); |
| 1988 | xsum_small_negate (&lacc->sacc); |
| 1989 | } |
| 1990 | |
| 1991 | |
| 1992 |
nothing calls this directly
no test coverage detected