Changeset 223823 in webkit for trunk/Source/JavaScriptCore/jit/JITArithmetic.cpp
- Timestamp:
- Oct 22, 2017, 9:47:01 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITArithmetic.cpp
r223318 r223823 473 473 /* ------------------------------ BEGIN: OP_MOD ------------------------------ */ 474 474 475 #if CPU(X86 ) || CPU(X86_64)475 #if CPU(X86_64) 476 476 477 477 void JIT::emit_op_mod(Instruction* currentInstruction) … … 517 517 } 518 518 519 #else // CPU(X86 ) || CPU(X86_64)519 #else // CPU(X86_64) 520 520 521 521 void JIT::emit_op_mod(Instruction* currentInstruction) … … 530 530 } 531 531 532 #endif // CPU(X86 ) || CPU(X86_64)532 #endif // CPU(X86_64) 533 533 534 534 /* ------------------------------ END: OP_MOD ------------------------------ */ … … 1086 1086 } 1087 1087 1088 void JIT::emit_op_pow(Instruction* currentInstruction)1089 {1090 JITSlowPathCall slowPathCall(this, currentInstruction, slow_path_pow);1091 slowPathCall.call();1092 }1093 1094 1088 /* ------------------------------ END: OP_ADD, OP_SUB, OP_MUL, OP_POW ------------------------------ */ 1095 1089
Note:
See TracChangeset
for help on using the changeset viewer.