X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb/blobdiff_plain/c76bf871a6e3ab5fff22330c998ce34804e8351b..416b88692ad45dca8b3ae4800916dd8b3e9c2551:/math/mpx.c diff --git a/math/mpx.c b/math/mpx.c index 07a6c20f..f761003f 100644 --- a/math/mpx.c +++ b/math/mpx.c @@ -1278,6 +1278,10 @@ mpw mpx_udivn(mpw *qv, mpw *qvl, const mpw *rv, const mpw *rvl, mpw d) #include #include +#ifdef ENABLE_ASM_DEBUG +# include "regdump.h" +#endif + #include "mpscan.h" #define ALLOC(v, vl, sz) do { \ @@ -1709,6 +1713,9 @@ static test_chunk defs[] = { int main(int argc, char *argv[]) { +#ifdef ENABLE_ASM_DEBUG + regdump_init(); +#endif test_run(argc, argv, defs, SRCDIR"/t/mpx"); return (0); }