X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb/blobdiff_plain/141c12847a1c2f8cc8db03d420551584e689fb87..416b88692ad45dca8b3ae4800916dd8b3e9c2551:/symm/gcm.c diff --git a/symm/gcm.c b/symm/gcm.c index 95718945..b4384153 100644 --- a/symm/gcm.c +++ b/symm/gcm.c @@ -782,6 +782,10 @@ void gcm_concat(const gcm_params *p, uint32 *z, const uint32 *x, #include #include +#ifdef ENABLE_ASM_DEBUG +# include "regdump.h" +#endif + static void report_failure(const char *test, unsigned nbits, const char *ref, dstr v[], dstr *d) { @@ -874,6 +878,9 @@ GCM_WIDTHS(TEST) int main(int argc, char *argv[]) { ego(argv[0]); +#ifdef ENABLE_ASM_DEBUG + regdump_init(); +#endif test_run(argc, argv, defs, SRCDIR"/t/gcm"); return (0); }