Changeset 224243 in webkit for trunk/Source/JavaScriptCore/bytecode/StructureStubInfo.h
- Timestamp:
- Oct 31, 2017, 1:29:55 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/StructureStubInfo.h
r218794 r224243 175 175 int32_t deltaFromStartToSlowPathStart; 176 176 177 int8_tbaseGPR;178 int8_tvalueGPR;179 int8_tthisGPR;177 GPRReg baseGPR; 178 GPRReg valueGPR; 179 GPRReg thisGPR; 180 180 #if USE(JSVALUE32_64) 181 int8_tvalueTagGPR;182 int8_tbaseTagGPR;183 int8_tthisTagGPR;181 GPRReg valueTagGPR; 182 GPRReg baseTagGPR; 183 GPRReg thisTagGPR; 184 184 #endif 185 185 } patch; … … 198 198 return JSValueRegs( 199 199 #if USE(JSVALUE32_64) 200 static_cast<GPRReg>(patch.valueTagGPR),200 patch.valueTagGPR, 201 201 #endif 202 static_cast<GPRReg>(patch.valueGPR));202 patch.valueGPR); 203 203 } 204 204
Note:
See TracChangeset
for help on using the changeset viewer.