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

Unified Diff: runtime/third_party/double-conversion/src/double-conversion.cc

Issue 539573003: Adds support for building arm64 Android. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 3 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/bin/dbg_connection_android.h ('k') | runtime/vm/cpu_arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/third_party/double-conversion/src/double-conversion.cc
===================================================================
--- runtime/third_party/double-conversion/src/double-conversion.cc (revision 39843)
+++ runtime/third_party/double-conversion/src/double-conversion.cc (working copy)
@@ -28,14 +28,14 @@
#include <limits.h>
#include <math.h>
-#include "double-conversion.h"
+#include "double-conversion.h" /* NOLINT */
-#include "bignum-dtoa.h"
-#include "fast-dtoa.h"
-#include "fixed-dtoa.h"
-#include "ieee.h"
-#include "strtod.h"
-#include "utils.h"
+#include "bignum-dtoa.h" /* NOLINT */
+#include "fast-dtoa.h" /* NOLINT */
+#include "fixed-dtoa.h" /* NOLINT */
+#include "ieee.h" /* NOLINT */
+#include "strtod.h" /* NOLINT */
+#include "utils.h" /* NOLINT */
namespace double_conversion {
@@ -577,7 +577,8 @@
} while (current != end);
ASSERT(number < ((int64_t)1 << kSignificandSize));
- ASSERT(static_cast<int64_t>(static_cast<double>(number)) == number);
+ const double double_number = static_cast<double>(number);
+ ASSERT(static_cast<int64_t>(double_number) == number);
*trailing_pointer = current;
« no previous file with comments | « runtime/bin/dbg_connection_android.h ('k') | runtime/vm/cpu_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698