X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb/blobdiff_plain/141c12847a1c2f8cc8db03d420551584e689fb87..HEAD:/symm/salsa20.c diff --git a/symm/salsa20.c b/symm/salsa20.c index 7806e6ca..f0fe3d7c 100644 --- a/symm/salsa20.c +++ b/symm/salsa20.c @@ -875,6 +875,10 @@ SALSA20_VARS(DEFXGRAND) #include #include +#ifdef ENABLE_ASM_DEBUG +# include "regdump.h" +#endif + static const int perm[] = { 0, 13, 10, 7, 4, 1, 14, 11, @@ -1017,6 +1021,9 @@ SALSA20_VARS(DEFXTAB) int main(int argc, char *argv[]) { +#ifdef ENABLE_ASM_DEBUG + regdump_init(); +#endif test_run(argc, argv, defs, SRCDIR"/t/salsa20"); return (0); }