Changeset 39121 in webkit for trunk/JavaScriptCore/jit/JIT.cpp
- Timestamp:
- Dec 8, 2008, 6:10:41 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JIT.cpp
r39083 r39121 517 517 case op_get_global_var: { 518 518 JSVariableObject* globalObject = static_cast<JSVariableObject*>(instruction[i + 2].u.jsCell); 519 move( globalObject, X86::eax);519 move(ImmPtr(globalObject), X86::eax); 520 520 emitGetVariableObjectRegister(X86::eax, instruction[i + 3].u.operand, X86::eax); 521 521 emitPutVirtualRegister(instruction[i + 1].u.operand); … … 526 526 emitGetVirtualRegister(instruction[i + 3].u.operand, X86::edx, i); 527 527 JSVariableObject* globalObject = static_cast<JSVariableObject*>(instruction[i + 1].u.jsCell); 528 move( globalObject, X86::eax);528 move(ImmPtr(globalObject), X86::eax); 529 529 emitPutVariableObjectRegister(X86::edx, X86::eax, instruction[i + 2].u.operand); 530 530 i += 4;
Note:
See TracChangeset
for help on using the changeset viewer.