From 2d1938295e58e0c7fc672edcacf08bffd815083a Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Mon, 16 Oct 2023 16:09:07 -0700 Subject: [PATCH] switch powmod to using new divmod implementation -- test not enabled yet --- src/openpower/test/bigint/powmod.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, ) -- 2.30.2