Changeset 91825 in webkit for trunk/Source/JavaScriptCore/dfg/DFGJITCompiler.cpp
- Timestamp:
- Jul 27, 2011, 12:12:38 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGJITCompiler.cpp
r91804 r91825 245 245 jit.swap(gpr(), other.gpr()); 246 246 247 if (UNLIKELY(needDataFormatConversion( myDataFormat, myNewDataFormat))) {248 if ( myDataFormat == DataFormatInteger)247 if (UNLIKELY(needDataFormatConversion(otherDataFormat, myNewDataFormat))) { 248 if (otherDataFormat == DataFormatInteger) 249 249 jit.orPtr(GPRInfo::tagTypeNumberRegister, gpr()); 250 250 else if (myNewDataFormat == DataFormatInteger) … … 252 252 } 253 253 254 if (UNLIKELY(needDataFormatConversion( otherDataFormat, myNewDataFormat))) {255 if ( otherDataFormat == DataFormatInteger)254 if (UNLIKELY(needDataFormatConversion(myDataFormat, otherNewDataFormat))) { 255 if (myDataFormat == DataFormatInteger) 256 256 jit.orPtr(GPRInfo::tagTypeNumberRegister, other.gpr()); 257 257 else if (otherNewDataFormat == DataFormatInteger)
Note:
See TracChangeset
for help on using the changeset viewer.