Changeset 160042 in webkit


Ignore:
Timestamp:
Dec 3, 2013 2:38:13 PM (10 years ago)
Author:
msaboff@apple.com
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):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r160038 r160042  
     12013-12-03  Michael Saboff  <msaboff@apple.com>
     2
     3        jit/JITArithmetic.cpp doesn't build for non-X86 ports
     4        https://bugs.webkit.org/show_bug.cgi?id=125185
     5
     6        Rubber stamped by Mark Hahnenberg.
     7
     8        Removed unused declarations and related UNUSED_PARAM().
     9
     10        * jit/JITArithmetic.cpp:
     11        (JSC::JIT::emit_op_mod):
     12
    1132013-12-03  Filip Pizlo  <fpizlo@apple.com>
    214
  • trunk/Source/JavaScriptCore/jit/JITArithmetic.cpp

    r159973 r160042  
    668668void JIT::emit_op_mod(Instruction* currentInstruction)
    669669{
    670     int result = currentInstruction[1].u.operand;
    671     int op1 = currentInstruction[2].u.operand;
    672     int op2 = currentInstruction[3].u.operand;
    673 
    674     UNUSED_PARAM(op1);
    675     UNUSED_PARAM(op2);
    676 
    677670    JITSlowPathCall slowPathCall(this, currentInstruction, slow_path_mod);
    678671    slowPathCall.call();
Note: See TracChangeset for help on using the changeset viewer.