Title: [160042] trunk/Source/_javascript_Core
Revision
160042
Author
[email protected]
Date
2013-12-03 14:38:13 -0800 (Tue, 03 Dec 2013)

Log Message

jit/JITArithmetic.cpp doesn't build for non-X86 ports
https://bugs.webkit.org/show_bug.cgi?id=125185

Rubber stamped by Mark Hahnenberg.

Removed unused declarations and related UNUSED_PARAM().

* jit/JITArithmetic.cpp:
(JSC::JIT::emit_op_mod):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (160041 => 160042)


--- trunk/Source/_javascript_Core/ChangeLog	2013-12-03 22:35:19 UTC (rev 160041)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-12-03 22:38:13 UTC (rev 160042)
@@ -1,3 +1,15 @@
+2013-12-03  Michael Saboff  <[email protected]>
+
+        jit/JITArithmetic.cpp doesn't build for non-X86 ports
+        https://bugs.webkit.org/show_bug.cgi?id=125185
+
+        Rubber stamped by Mark Hahnenberg.
+
+        Removed unused declarations and related UNUSED_PARAM().
+
+        * jit/JITArithmetic.cpp:
+        (JSC::JIT::emit_op_mod):
+
 2013-12-03  Filip Pizlo  <[email protected]>
 
         ObjectAllocationProfile is racy and the DFG should be cool with that

Modified: trunk/Source/_javascript_Core/jit/JITArithmetic.cpp (160041 => 160042)


--- trunk/Source/_javascript_Core/jit/JITArithmetic.cpp	2013-12-03 22:35:19 UTC (rev 160041)
+++ trunk/Source/_javascript_Core/jit/JITArithmetic.cpp	2013-12-03 22:38:13 UTC (rev 160042)
@@ -667,13 +667,6 @@
 
 void JIT::emit_op_mod(Instruction* currentInstruction)
 {
-    int result = currentInstruction[1].u.operand;
-    int op1 = currentInstruction[2].u.operand;
-    int op2 = currentInstruction[3].u.operand;
-
-    UNUSED_PARAM(op1);
-    UNUSED_PARAM(op2);
-
     JITSlowPathCall slowPathCall(this, currentInstruction, slow_path_mod);
     slowPathCall.call();
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to