Title: [160933] branches/jsCStack/Source/_javascript_Core
Revision
160933
Author
mark....@apple.com
Date
2013-12-20 15:09:04 -0800 (Fri, 20 Dec 2013)

Log Message

Fix broken non-FTL build.

Not reviewed.

* jit/RegisterPreservationWrapperGenerator.cpp:
(JSC::generateRegisterPreservationWrapper):

Modified Paths

Diff

Modified: branches/jsCStack/Source/_javascript_Core/ChangeLog (160932 => 160933)


--- branches/jsCStack/Source/_javascript_Core/ChangeLog	2013-12-20 23:04:28 UTC (rev 160932)
+++ branches/jsCStack/Source/_javascript_Core/ChangeLog	2013-12-20 23:09:04 UTC (rev 160933)
@@ -1,3 +1,12 @@
+2013-12-20  Mark Lam  <mark....@apple.com>
+
+        Fix broken non-FTL build.
+
+        Not reviewed.
+
+        * jit/RegisterPreservationWrapperGenerator.cpp:
+        (JSC::generateRegisterPreservationWrapper):
+
 2013-12-20  Michael Saboff  <msab...@apple.com>
 
         CStack Branch: CodeBlocks aren't being marked by garbage collector

Modified: branches/jsCStack/Source/_javascript_Core/jit/RegisterPreservationWrapperGenerator.cpp (160932 => 160933)


--- branches/jsCStack/Source/_javascript_Core/jit/RegisterPreservationWrapperGenerator.cpp	2013-12-20 23:04:28 UTC (rev 160932)
+++ branches/jsCStack/Source/_javascript_Core/jit/RegisterPreservationWrapperGenerator.cpp	2013-12-20 23:09:04 UTC (rev 160933)
@@ -121,6 +121,10 @@
     
     return FINALIZE_DFG_CODE(linkBuffer, ("Register preservation wrapper for %s/%s, %p", toCString(scriptExecutable->hashFor(CodeForCall)).data(), toCString(scriptExecutable->hashFor(CodeForConstruct)).data(), target.executableAddress()));
 #else // ENABLE(FTL_JIT)
+    UNUSED_PARAM(vm);
+    UNUSED_PARAM(executable);
+    UNUSED_PARAM(target);
+    UNUSED_PARAM(arity);
     // We don't support non-FTL builds for two reasons:
     // - It just so happens that currently only the FTL bottoms out in this code.
     // - The code above uses 64-bit instructions. It doesn't necessarily have to; it would be
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to