Changeset 265600 in webkit for trunk/Source/JavaScriptCore/jit/JITOperations.cpp
- Timestamp:
- Aug 12, 2020, 9:50:12 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITOperations.cpp
r265000 r265600 590 590 PutPropertySlot slot(baseValue, true, codeBlock->putByIdContext()); 591 591 592 Structure* structure = baseValue.isCell() ? baseValue.asCell()->structure(vm) : nullptr;592 Structure* structure = CommonSlowPaths::originalStructureBeforePut(vm, baseValue); 593 593 baseValue.putInline(globalObject, ident, value, slot); 594 594 … … 622 622 PutPropertySlot slot(baseValue, false, codeBlock->putByIdContext()); 623 623 624 Structure* structure = baseValue.isCell() ? baseValue.asCell()->structure(vm) : nullptr;624 Structure* structure = CommonSlowPaths::originalStructureBeforePut(vm, baseValue); 625 625 baseValue.putInline(globalObject, ident, value, slot); 626 626
Note:
See TracChangeset
for help on using the changeset viewer.