From: Jacob Lifshay Date: Mon, 16 Oct 2023 23:09:07 +0000 (-0700) Subject: switch powmod to using new divmod implementation -- test not enabled yet X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2d1938295e58e0c7fc672edcacf08bffd815083a;p=openpower-isa.git switch powmod to using new divmod implementation -- test not enabled yet --- diff --git a/src/openpower/test/bigint/powmod.py b/src/openpower/test/bigint/powmod.py index 5fa237a7..56f48fff 100644 --- a/src/openpower/test/bigint/powmod.py +++ b/src/openpower/test/bigint/powmod.py @@ -1053,7 +1053,7 @@ POWMOD_256_ASM = ( "sv.ld *14, -144(1)", # restore all callee-save registers "bclr 20, 0, 0 # blr", *MUL_256_X_256_TO_512_ASM, - *DIVMOD_SHIFT_SUB_512x256_TO_256x256_ASM, + *DivModKnuthAlgorithmD().asm, )