Skip to content

Commit

Permalink
Merge pull request #2002 from albinahlback/refactor_mulhigh_normalised
Browse files Browse the repository at this point in the history
Refactor some mulhigh_normalised for x86
  • Loading branch information
albinahlback committed May 27, 2024
2 parents 54c5455 + 4a1df0d commit 3d6eaab
Show file tree
Hide file tree
Showing 2 changed files with 287 additions and 244 deletions.
4 changes: 2 additions & 2 deletions src/mpn_extras/test/t-mulhigh_normalised.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ TEST_FUNCTION_START(flint_mpn_mulhigh_normalised, state)
result = result && (mpn_cmp(rp_n, rp_u, n + 1) == 0);
if (!result)
TEST_FUNCTION_FAIL(
"rp_n != rp_u << 1 when normalised\n"
"Normalised case failed\n"
"ix = %wd\n"
"n = %wd\n"
"xp = %{ulong*}\n"
Expand All @@ -74,7 +74,7 @@ TEST_FUNCTION_START(flint_mpn_mulhigh_normalised, state)
result = (mpn_cmp(rp_n, rp_u, n + 1) == 0);
if (!result)
TEST_FUNCTION_FAIL(
"rp_n != rp_u when unnormalised\n"
"Unnormalised case failed\n"
"ix = %wd\n"
"n = %wd\n"
"xp = %{ulong*}\n"
Expand Down
Loading

0 comments on commit 3d6eaab

Please sign in to comment.