Commit 941b1165 by Jeff Law

Fix from Joern.

From-SVN: r15955
parent f22376c7
......@@ -33,7 +33,7 @@ sqrtllu (long long unsigned t)
for (b = 0, s = t; b++, (s >>= 1) != 0; )
;
s = 1 << (b >> 1);
s = 1LL << (b >> 1);
if (b & 1)
s += s >> 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment