Title: [115493] trunk/Source/_javascript_Core
Revision
115493
Author
[email protected]
Date
2012-04-27 14:16:29 -0700 (Fri, 27 Apr 2012)

Log Message

Correct assertion.

Modified Paths


Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (115492 => 115493)


--- trunk/Source/_javascript_Core/ChangeLog	2012-04-27 21:08:56 UTC (rev 115492)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-04-27 21:16:29 UTC (rev 115493)
@@ -1,5 +1,12 @@
 2012-04-27  Oliver Hunt  <[email protected]>
 
+        Correct assertion.
+
+        * interpreter/Interpreter.cpp:
+        (JSC::Interpreter::throwException):
+
+2012-04-27  Oliver Hunt  <[email protected]>
+
         Lazy link phase of baseline jit fails to propagate exception
         https://bugs.webkit.org/show_bug.cgi?id=85092
 

Modified: trunk/Source/_javascript_Core/interpreter/Interpreter.cpp (115492 => 115493)


--- trunk/Source/_javascript_Core/interpreter/Interpreter.cpp	2012-04-27 21:08:56 UTC (rev 115492)
+++ trunk/Source/_javascript_Core/interpreter/Interpreter.cpp	2012-04-27 21:16:29 UTC (rev 115493)
@@ -1009,7 +1009,7 @@
     CodeBlock* codeBlock = callFrame->codeBlock();
     bool isInterrupt = false;
 
-    ASSERT(exceptionValue.isEmpty());
+    ASSERT(!exceptionValue.isEmpty());
     ASSERT(!exceptionValue.isCell() || exceptionValue.asCell());
     // This shouldn't be possible (hence the assertions), but we're already in the slowest of
     // slow cases, so let's harden against it anyway to be safe.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to