switch powmod to using new divmod implementation -- test not enabled yet
authorJacob Lifshay <programmerjake@gmail.com>
Mon, 16 Oct 2023 23:09:07 +0000 (16:09 -0700)
committerJacob Lifshay <programmerjake@gmail.com>
Thu, 30 Nov 2023 07:55:28 +0000 (23:55 -0800)
src/openpower/test/bigint/powmod.py

index 5fa237a7ab78a299278623c6f6df22c6fc101450..56f48ffff18269043358c78f4c0a16a5187ecfc9 100644 (file)
@@ -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,
 )