| author | |
| committer | |
| log | fb365e39528eca572f099ee1f15f6e1258378ac8 |
| tree | 730ca6f74b8b4dfe1dfcf54737519215ef63ea08 |
| parent | 0cfeefbf158e91922e367113c438c331d75ac1b4 |
1 files changed, 1 insertions(+), 1 deletions(-)
src/tokenizer.cpp+1-1| ... | ... | @@ -344,7 +344,7 @@ static void end_float_token(Tokenize *t) { |
| 344 | 344 | const uint64_t shift = 112 - significand_magnitude_in_bin; |
| 345 | 345 | const uint64_t exp_shift = 48; |
| 346 | 346 | // Mask the sign bit to 0 since always non-negative lex |
| 347 | const uint64_t exp_mask = 0xfffful << exp_shift; | |
| 347 | const uint64_t exp_mask = 0xffffull << exp_shift; | |
| 348 | 348 | |
| 349 | 349 | if (shift >= 64) { |
| 350 | 350 | f_bits.repr[0] = 0; |