Commit d0f98d2d authored by miloyip's avatar miloyip

Fix a bug in dtoa on gcc

Discovered in https://github.com/miloyip/dtoa-benchmark/issues/1 with
assertion fail.
parent c4a1566a
......@@ -105,7 +105,7 @@ struct DiyFp {
_BitScanReverse64(&index, f);
return DiyFp(f << (63 - index), e - (63 - index));
#elif defined(__GNUC__)
int s = __builtin_clzll(f) + 1;
int s = __builtin_clzll(f);
return DiyFp(f << s, e - s);
#else
DiyFp res = *this;
......
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