Changeset 39342 in webkit for trunk/JavaScriptCore/jit/JITCall.cpp
- Timestamp:
- Dec 16, 2008, 4:03:34 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JITCall.cpp
r39316 r39342 92 92 emitPutJITStubArgConstant(registerOffset, 2); 93 93 emitPutJITStubArgConstant(argCount, 3); 94 emitPutJITStubArgConstant( reinterpret_cast<unsigned>(instruction), 4);94 emitPutJITStubArgConstant(instruction, 4); 95 95 } 96 96 … … 137 137 138 138 emitCTICall(Interpreter::cti_op_call_eval); 139 wasEval = jnePtr( ImmPtr(JSImmediate::impossibleValue()), X86::eax);139 wasEval = jnePtr(X86::eax, ImmPtr(JSImmediate::impossibleValue())); 140 140 } 141 141
Note:
See TracChangeset
for help on using the changeset viewer.