typo caught by gcc 4.6.0 reported by John Abraham

This commit is contained in:
Mathieu Lacage
2011-05-02 08:47:57 +02:00
parent b13096fc68
commit 290b704d86

View File

@@ -113,7 +113,7 @@ int64x64_t::UmulByInvert (uint128_t a, uint128_t b)
hi = ah * bh;
mid = ah * bl + al * bh;
mid >>= 64;
result = ah * bh + mid;
result = hi + mid;
return result;
}
int64x64_t