Changeset 224243 in webkit for trunk/Source/JavaScriptCore/bytecode/InlineAccess.cpp
- Timestamp:
- Oct 31, 2017, 1:29:55 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/InlineAccess.cpp
r220441 r224243 162 162 CCallHelpers jit; 163 163 164 GPRReg base = st atic_cast<GPRReg>(stubInfo.patch.baseGPR);164 GPRReg base = stubInfo.patch.baseGPR; 165 165 JSValueRegs value = stubInfo.valueRegs(); 166 166 … … 190 190 { 191 191 ScratchRegisterAllocator allocator(stubInfo.patch.usedRegisters); 192 allocator.lock(st atic_cast<GPRReg>(stubInfo.patch.baseGPR));193 allocator.lock(st atic_cast<GPRReg>(stubInfo.patch.valueGPR));192 allocator.lock(stubInfo.patch.baseGPR); 193 allocator.lock(stubInfo.patch.valueGPR); 194 194 #if USE(JSVALUE32_64) 195 allocator.lock(st atic_cast<GPRReg>(stubInfo.patch.baseTagGPR));196 allocator.lock(st atic_cast<GPRReg>(stubInfo.patch.valueTagGPR));195 allocator.lock(stubInfo.patch.baseTagGPR); 196 allocator.lock(stubInfo.patch.valueTagGPR); 197 197 #endif 198 198 GPRReg scratch = allocator.allocateScratchGPR();
Note:
See TracChangeset
for help on using the changeset viewer.