(a)
| 3742 | return _LL((c16 << 16) | c00, (c48 << 16) | c32); |
| 3743 | } |
| 3744 | function _Lneg(a) { a = _Lc(a); return _Leq(a, _LMIN) ? _LMIN : _Ladd(_LL(~a.l, ~a.h), _L1); } |
| 3745 | function _Lsub(a, b) { |
| 3746 | // a - b = a + ~b + 1, inlined as a single 16-bit add chain (one allocation |
| 3747 | // instead of _Lneg+_Ladd's two) -- LSUB is hot in timing/loops. |
no test coverage detected