Reviewers: marja,

Description:
Version 3.28.1.2 (merged r21975)

Initialize the Isolate's use_counter_callback_ member

[email protected]
BUG=

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

SVN Base: https://v8.googlecode.com/svn/trunk

Affected files (+3, -2 lines):
  M src/isolate.cc
  M src/version.cc


Index: src/isolate.cc
diff --git a/src/isolate.cc b/src/isolate.cc
index 9a850f659ed3f3eb2829b348605643210d159276..9bffca25a2ddedf955f3cb4e4642a0b4487504bd 100644
--- a/src/isolate.cc
+++ b/src/isolate.cc
@@ -1480,7 +1480,8 @@ Isolate::Isolate()
       sweeper_thread_(NULL),
       num_sweeper_threads_(0),
       stress_deopt_count_(0),
-      next_optimization_id_(0) {
+      next_optimization_id_(0),
+      use_counter_callback_(NULL) {
   id_ = base::NoBarrier_AtomicIncrement(&isolate_counter_, 1);
   TRACE_ISOLATE(constructor);

Index: src/version.cc
diff --git a/src/version.cc b/src/version.cc
index 8887550f78c0918e8b36a9f2b525b7df4830b5a7..6a4f90bf9a5a0cc2a7b632becd2d92d57bc7485e 100644
--- a/src/version.cc
+++ b/src/version.cc
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     28
 #define BUILD_NUMBER      1
-#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/d/optout.

Reply via email to