Title: [217846] trunk/Source/_javascript_Core
Revision
217846
Author
[email protected]
Date
2017-06-06 11:35:41 -0700 (Tue, 06 Jun 2017)

Log Message

Unreviewed, fix 32-bit build.

* jit/JITOpcodes.cpp:
(JSC::JIT::emit_op_unreachable):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (217845 => 217846)


--- trunk/Source/_javascript_Core/ChangeLog	2017-06-06 18:28:55 UTC (rev 217845)
+++ trunk/Source/_javascript_Core/ChangeLog	2017-06-06 18:35:41 UTC (rev 217846)
@@ -1,3 +1,10 @@
+2017-06-06  Filip Pizlo  <[email protected]>
+
+        Unreviewed, fix 32-bit build.
+
+        * jit/JITOpcodes.cpp:
+        (JSC::JIT::emit_op_unreachable):
+
 2017-06-06  Joseph Pecoraro  <[email protected]>
 
         Unreviewed rollout r217807. Caused a test to crash.

Modified: trunk/Source/_javascript_Core/jit/JITOpcodes.cpp (217845 => 217846)


--- trunk/Source/_javascript_Core/jit/JITOpcodes.cpp	2017-06-06 18:28:55 UTC (rev 217845)
+++ trunk/Source/_javascript_Core/jit/JITOpcodes.cpp	2017-06-06 18:35:41 UTC (rev 217846)
@@ -558,12 +558,6 @@
     slowPathCall.call();
 }
 
-void JIT::emit_op_unreachable(Instruction* currentInstruction)
-{
-    JITSlowPathCall slowPathCall(this, currentInstruction, slow_path_unreachable);
-    slowPathCall.call();
-}
-
 void JIT::emit_op_create_lexical_environment(Instruction* currentInstruction)
 {
     JITSlowPathCall slowPathCall(this, currentInstruction, slow_path_create_lexical_environment);
@@ -1526,6 +1520,12 @@
     emitPutVirtualRegister(dst, resultRegs);
 }
 
+void JIT::emit_op_unreachable(Instruction* currentInstruction)
+{
+    JITSlowPathCall slowPathCall(this, currentInstruction, slow_path_unreachable);
+    slowPathCall.call();
+}
+
 } // namespace JSC
 
 #endif // ENABLE(JIT)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to