Revision: 21973
Author:   [email protected]
Date:     Tue Jun 24 14:11:34 2014 UTC
Log:      Version 3.28.1.1 (merged r21971)

Revert assertion change from r21933 in Isolate::RunMicrotasks().

[email protected]
BUG=

Review URL: https://codereview.chromium.org/351903002
http://code.google.com/p/v8/source/detail?r=21973

Modified:
 /trunk/src/isolate.cc
 /trunk/src/version.cc

=======================================
--- /trunk/src/isolate.cc       Tue Jun 24 00:06:56 2014 UTC
+++ /trunk/src/isolate.cc       Tue Jun 24 14:11:34 2014 UTC
@@ -2292,10 +2292,12 @@


 void Isolate::RunMicrotasks() {
-  // In some mjsunit tests %RunMicrotasks is called explicitly, violating
-  // this assertion.  Therefore we also check for --allow-natives-syntax.
-  ASSERT(FLAG_allow_natives_syntax ||
-         handle_scope_implementer()->CallDepthIsZero());
+  // %RunMicrotasks may be called in mjsunit tests, which violates
+  // this assertion, hence the check for --allow-natives-syntax.
+  // TODO(adamk): However, this also fails some layout tests.
+  //
+  // ASSERT(FLAG_allow_natives_syntax ||
+  //        handle_scope_implementer()->CallDepthIsZero());

   // Increase call depth to prevent recursive callbacks.
   v8::Isolate::SuppressMicrotaskExecutionScope suppress(
=======================================
--- /trunk/src/version.cc       Tue Jun 24 00:06:56 2014 UTC
+++ /trunk/src/version.cc       Tue Jun 24 14:11:34 2014 UTC
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     28
 #define BUILD_NUMBER      1
-#define PATCH_LEVEL       0
+#define PATCH_LEVEL       1
 // 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