Changeset 209725 in webkit for trunk/Source/JavaScriptCore/jit/CallFrameShuffler64.cpp
- Timestamp:
- Dec 12, 2016, 1:46:45 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/CallFrameShuffler64.cpp
r209678 r209725 324 324 else 325 325 m_jit.move64ToDouble(cachedRecovery.recovery().gpr(), wantedReg.fpr()); 326 RELEASE_ASSERT(cachedRecovery.recovery().dataFormat() == DataFormatJS); 326 DataFormat format = cachedRecovery.recovery().dataFormat(); 327 RELEASE_ASSERT(format == DataFormatJS || format == DataFormatCell); 327 328 updateRecovery(cachedRecovery, 328 329 ValueRecovery::inRegister(wantedReg, DataFormatJS));
Note:
See TracChangeset
for help on using the changeset viewer.