Title: [174361] trunk/Source/_javascript_Core
Revision
174361
Author
[email protected]
Date
2014-10-06 13:27:16 -0700 (Mon, 06 Oct 2014)

Log Message

Fix cloop build.

Modified Paths


Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (174360 => 174361)


--- trunk/Source/_javascript_Core/ChangeLog	2014-10-06 20:18:05 UTC (rev 174360)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-10-06 20:27:16 UTC (rev 174361)
@@ -1,3 +1,10 @@
+2014-10-06  Oliver Hunt  <[email protected]>
+
+        Fix cloop build
+
+        * interpreter/Interpreter.cpp:
+        (JSC::unwindCallFrame):
+
 2014-10-06  Mark Lam  <[email protected]>
 
         Unreviewed build fix.

Modified: trunk/Source/_javascript_Core/interpreter/Interpreter.cpp (174360 => 174361)


--- trunk/Source/_javascript_Core/interpreter/Interpreter.cpp	2014-10-06 20:18:05 UTC (rev 174360)
+++ trunk/Source/_javascript_Core/interpreter/Interpreter.cpp	2014-10-06 20:27:16 UTC (rev 174361)
@@ -459,8 +459,8 @@
 #if ENABLE(DFG_JIT)
             if (visitor->isInlinedFrame())
                 arguments->tearOff(callFrame, visitor->inlineCallFrame());
+            else
 #endif
-            else
                 arguments->tearOff(callFrame);
         }
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to