Chromium Code Reviews| Index: runtime/vm/bigint_operations.cc |
| =================================================================== |
| --- runtime/vm/bigint_operations.cc (revision 3739) |
| +++ runtime/vm/bigint_operations.cc (working copy) |
| @@ -245,6 +245,7 @@ |
| bool BigintOperations::FitsIntoSmi(const Bigint& bigint) { |
| + ASSERT(!bigint.IsNull()); |
| const BIGNUM *bn = bigint.BNAddr(); |
| int bits = BN_num_bits(bn); |
| // Special case for kMinValue as the absolute value is 1 bit longer |