Adam Ierymenko 5 лет назад
Родитель
Сommit
ea0961dfd2
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      node/MIMC52.cpp

+ 1 - 1
node/MIMC52.cpp

@@ -27,7 +27,7 @@ ZT_ALWAYS_INLINE uint64_t mulmod52(uint64_t a,uint64_t b,const uint64_t m) noexc
 {
 #if 0 // #ifdef ZT_ARCH_X64
 	// This works on X64 but is very slightly slower than the FPU trick on all tested cores. That's probably
-	// because FPU division is more heavily optimized in silicon than integer division.
+	// because FPU division is more heavily optimized in silicon than integer division on these chips.
 	uint64_t r;
 	__asm__ (
 		"mulq %2\n\t"