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