Changeset 37651 in webkit for trunk/JavaScriptCore/VM/CTI.cpp
- Timestamp:
- Oct 17, 2008, 3:15:10 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CTI.cpp
r37650 r37651 3037 3037 // We don't want to repatch more than once - in future go to cti_op_get_by_id_generic. 3038 3038 // Should probably go to Machine::cti_op_get_by_id_fail, but that doesn't do anything interesting right now. 3039 ctiRepatchCallByReturnAddress(returnAddress, (void*)(Machine::cti_op_get_by_id_generic));3039 ctiRepatchCallByReturnAddress(returnAddress, reinterpret_cast<void*>(Machine::cti_op_get_by_id_generic)); 3040 3040 3041 3041 // Repatch the offset into the propoerty map to load from, then repatch the StructureID to look for. … … 3050 3050 // We don't want to repatch more than once - in future go to cti_op_put_by_id_generic. 3051 3051 // Should probably go to Machine::cti_op_put_by_id_fail, but that doesn't do anything interesting right now. 3052 ctiRepatchCallByReturnAddress(returnAddress, (void*)(Machine::cti_op_put_by_id_generic));3052 ctiRepatchCallByReturnAddress(returnAddress, reinterpret_cast<void*>(Machine::cti_op_put_by_id_generic)); 3053 3053 3054 3054 // Repatch the offset into the propoerty map to load from, then repatch the StructureID to look for.
Note:
See TracChangeset
for help on using the changeset viewer.