Revision: 14435
Author:   [email protected]
Date:     Thu Apr 25 04:02:09 2013
Log:      Merged r14433 into trunk branch.

Get isolate from thread local instead of (potentially missing) block in HConstant.

[email protected]
BUG=

Review URL: https://chromiumcodereview.appspot.com/13890014
http://code.google.com/p/v8/source/detail?r=14435

Modified:
 /trunk/src/hydrogen-instructions.h
 /trunk/src/version.cc

=======================================
--- /trunk/src/hydrogen-instructions.h  Wed Apr 24 03:59:06 2013
+++ /trunk/src/hydrogen-instructions.h  Thu Apr 25 04:02:09 2013
@@ -3247,9 +3247,9 @@

   Handle<Object> handle() {
     if (handle_.is_null()) {
-      handle_ = isolate()->factory()->NewNumber(double_value_, TENURED);
+      handle_ = FACTORY->NewNumber(double_value_, TENURED);
     }
-    ALLOW_HANDLE_DEREF(isolate(), "smi check");
+    ALLOW_HANDLE_DEREF(Isolate::Current(), "smi check");
     ASSERT(has_int32_value_ || !handle_->IsSmi());
     return handle_;
   }
=======================================
--- /trunk/src/version.cc       Wed Apr 24 05:21:36 2013
+++ /trunk/src/version.cc       Thu Apr 25 04:02:09 2013
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     18
 #define BUILD_NUMBER      3
-#define PATCH_LEVEL       1
+#define PATCH_LEVEL       2
 // Use 1 for candidates and 0 otherwise.
 // (Boolean macro values are not supported by all preprocessors.)
 #define IS_CANDIDATE_VERSION 0

--
--
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/groups/opt_out.


Reply via email to