Reviewers: dcarney,

Description:
Fix compilation on win after r19784

[email protected]
BUG=

Please review this at https://codereview.chromium.org/194703002/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+4, -3 lines):
  M src/api.cc


Index: src/api.cc
diff --git a/src/api.cc b/src/api.cc
index 714e0054aaef661e7d68eb66e64c42a2d77db6e9..0dd4ee576a4c94b74fd30e9f8be8d0b22aab04eb 100644
--- a/src/api.cc
+++ b/src/api.cc
@@ -5626,9 +5626,10 @@ void v8::Date::DateTimeConfigurationChangeNotification(Isolate* isolate) { i::Handle<i::FixedArray>::cast(i_isolate->eternal_handles()->GetSingleton(
           i::EternalHandles::DATE_CACHE_VERSION));
   ASSERT_EQ(1, date_cache_version->length());
-  ASSERT(date_cache_version->get(0)->IsNumber());
-  date_cache_version->set(0, i::Smi::FromInt(
- date_cache_version->get(0)->Number() + 1));
+  CHECK(date_cache_version->get(0)->IsSmi());
+  date_cache_version->set(
+      0,
+ i::Smi::FromInt(i::Smi::cast(date_cache_version->get(0))->value() + 1));
 }




--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to