From 845f06cac5dcd5f1c0e325f08a3e0d1edd390224 Mon Sep 17 00:00:00 2001 From: Clint Banzhaf Date: Sun, 21 Dec 2025 00:51:37 +0100 Subject: [PATCH] remove forced unroll from 32-bit umul --- include/CppCore/Math/Util.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/CppCore/Math/Util.h b/include/CppCore/Math/Util.h index 5aab1c2b..c1aaf0a1 100644 --- a/include/CppCore/Math/Util.h +++ b/include/CppCore/Math/Util.h @@ -2768,7 +2768,6 @@ namespace CppCore bj = *bp++; ap = (uint32_t*)&a; rp = &((uint32_t*)&r)[j]; - CPPCORE_UNROLL for (size_t i = 0; i < NA && i+j < NR; i++, ap++, rp++) { CppCore::umul64(*ap, bj, tl, th);