Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Unified Diff: runtime/lib/integers.cc

Issue 14845021: Cleanups: addressed your comments from https://codereview.chromium.org/14962008/ (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/lib/double.cc ('k') | runtime/vm/bigint_operations.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/integers.cc
===================================================================
--- runtime/lib/integers.cc (revision 22880)
+++ runtime/lib/integers.cc (working copy)
@@ -24,7 +24,7 @@
if (i.IsBigint()) {
const Bigint& bigint = Bigint::Cast(i);
return !BigintOperations::FitsIntoSmi(bigint) &&
- !BigintOperations::FitsIntoMint(bigint);
+ !BigintOperations::FitsIntoInt64(bigint);
}
if (i.IsMint()) {
const Mint& mint = Mint::Cast(i);
« no previous file with comments | « runtime/lib/double.cc ('k') | runtime/vm/bigint_operations.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698