X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/0f00dc4c8eb47e67bc0f148c2dd109f73a451e0a..51f5bbe0bfe8a344c3cc1f5a9fddf885fa75d057:/math/mpx.c diff --git a/math/mpx.c b/math/mpx.c index 1294124..5a9a176 100644 --- a/math/mpx.c +++ b/math/mpx.c @@ -33,6 +33,7 @@ #include #include +#include #include "mptypes.h" #include "mpx.h" @@ -674,6 +675,7 @@ void mpx_bit##string(mpw *dv, mpw *dvl, const mpw *av, const mpw *avl, \ a = (av < avl) ? *av++ : 0; \ b = (bv < bvl) ? *bv++ : 0; \ *dv++ = B##string(a, b); \ + IGNORE(a); IGNORE(b); \ } \ }