X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb/blobdiff_plain/c76bf871a6e3ab5fff22330c998ce34804e8351b..416b88692ad45dca8b3ae4800916dd8b3e9c2551:/math/mpmont-exp.c diff --git a/math/mpmont-exp.c b/math/mpmont-exp.c index 6b5c8c43..ff15b2dc 100644 --- a/math/mpmont-exp.c +++ b/math/mpmont-exp.c @@ -93,6 +93,10 @@ mp *mpmont_exp(const mpmont *mm, mp *d, mp *a, mp *e) #ifdef TEST_RIG +#ifdef ENABLE_ASM_DEBUG +# include "regdump.h" +#endif + static int texp(dstr *v) { mp *m = *(mp **)v[0].buf; @@ -136,6 +140,9 @@ static test_chunk tests[] = { int main(int argc, char *argv[]) { sub_init(); +#ifdef ENABLE_ASM_DEBUG + regdump_init(); +#endif test_run(argc, argv, tests, SRCDIR "/t/mpmont"); return (0); }