Changeset 58287 in webkit for trunk/JavaScriptCore
- Timestamp:
- Apr 26, 2010, 9:39:48 PM (15 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r58286 r58287 1 2010-04-26 Oliver Hunt <[email protected]> 2 3 Fix windows 4 5 * jit/SpecializedThunkJIT.h: 6 (JSC::SpecializedThunkJIT::argumentToVirtualRegister): 7 1 8 2010-04-26 Oliver Hunt <[email protected]> 2 9 -
trunk/JavaScriptCore/jit/SpecializedThunkJIT.h
r58286 r58287 88 88 89 89 private: 90 unsignedargumentToVirtualRegister(unsigned argument)90 int argumentToVirtualRegister(unsigned argument) 91 91 { 92 return - (RegisterFile::CallFrameHeaderSize + (m_expectedArgCount - argument));92 return -static_cast<int>(RegisterFile::CallFrameHeaderSize + (m_expectedArgCount - argument)); 93 93 } 94 94
Note:
See TracChangeset
for help on using the changeset viewer.