Title: [160929] branches/jsCStack/Source/_javascript_Core
Revision
160929
Author
[email protected]
Date
2013-12-20 14:59:46 -0800 (Fri, 20 Dec 2013)

Log Message

Unreviewed build fix for building without the FTL.

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

Modified Paths

Diff

Modified: branches/jsCStack/Source/_javascript_Core/ChangeLog (160928 => 160929)


--- branches/jsCStack/Source/_javascript_Core/ChangeLog	2013-12-20 22:34:31 UTC (rev 160928)
+++ branches/jsCStack/Source/_javascript_Core/ChangeLog	2013-12-20 22:59:46 UTC (rev 160929)
@@ -1,3 +1,10 @@
+2013-12-20  Michael Saboff  <[email protected]>
+
+        Unreviewed build fix for building without the FTL.
+
+        * jit/RegisterPreservationWrapperGenerator.cpp:
+        (JSC::generateRegisterPreservationWrapper):
+
 2013-12-18  Filip Pizlo  <[email protected]>
 
         FTL should be able to do call ICs

Modified: branches/jsCStack/Source/_javascript_Core/jit/RegisterPreservationWrapperGenerator.cpp (160928 => 160929)


--- branches/jsCStack/Source/_javascript_Core/jit/RegisterPreservationWrapperGenerator.cpp	2013-12-20 22:34:31 UTC (rev 160928)
+++ branches/jsCStack/Source/_javascript_Core/jit/RegisterPreservationWrapperGenerator.cpp	2013-12-20 22:59:46 UTC (rev 160929)
@@ -126,7 +126,13 @@
     // - The code above uses 64-bit instructions. It doesn't necessarily have to; it would be
     //   easy to change it so that it doesn't. But obviously making that change would be a
     //   prerequisite to removing this #if.
+    UNUSED_PARAM(vm);
+    UNUSED_PARAM(executable);
+    UNUSED_PARAM(target);
+    UNUSED_PARAM(arity);
     UNREACHABLE_FOR_PLATFORM();
+
+    return MacroAssemblerCodeRef();
 #endif // ENABLE(FTL_JIT)
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to