Title: [151456] branches/dfgFourthTier/Source/_javascript_Core
Revision
151456
Author
mark....@apple.com
Date
2013-06-11 12:20:30 -0700 (Tue, 11 Jun 2013)

Log Message

Removed unused local variable to fix cab build.

Unreviewed.

* interpreter/StackIterator.cpp:
(JSC::StackIterator::Frame::logicalFrame):

Modified Paths

Diff

Modified: branches/dfgFourthTier/Source/_javascript_Core/ChangeLog (151455 => 151456)


--- branches/dfgFourthTier/Source/_javascript_Core/ChangeLog	2013-06-11 19:17:00 UTC (rev 151455)
+++ branches/dfgFourthTier/Source/_javascript_Core/ChangeLog	2013-06-11 19:20:30 UTC (rev 151456)
@@ -1,3 +1,12 @@
+2013-06-11  Mark Lam  <mark....@apple.com>
+
+        Removed unused local variable to fix cab build.
+
+        Unreviewed.
+
+        * interpreter/StackIterator.cpp:
+        (JSC::StackIterator::Frame::logicalFrame):
+
 2013-06-11  Filip Pizlo  <fpi...@apple.com>
 
         fourthTier: Type check hoisting phase has a dead if statement

Modified: branches/dfgFourthTier/Source/_javascript_Core/interpreter/StackIterator.cpp (151455 => 151456)


--- branches/dfgFourthTier/Source/_javascript_Core/interpreter/StackIterator.cpp	2013-06-11 19:17:00 UTC (rev 151455)
+++ branches/dfgFourthTier/Source/_javascript_Core/interpreter/StackIterator.cpp	2013-06-11 19:20:30 UTC (rev 151456)
@@ -248,9 +248,8 @@
     if (!codeOrigin.inlineCallFrame)
         return this; // Not currently in inlined code.
 
-    // We've got inlined frames. So, reify them so that the iterator can walk thru them.
+    // We've got inlined frames. So, reify them so that the iterator can walk through them.
     CallFrame* currFrame = this->callFrame();
-    CodeOrigin innerMostCodeOrigin = codeOrigin;
     CallFrame* innerMostLogicalFrame = currFrame + codeOrigin.inlineCallFrame->stackOffset;
 
     CallFrame* logicalFrame = innerMostLogicalFrame;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to