Ignore:
Timestamp:
May 19, 2009, 8:31:55 PM (16 years ago)
Author:
[email protected]
Message:

2009-05-19 Geoffrey Garen <[email protected]>

Windows build fix.

  • interpreter/RegisterFile.cpp: (JSC::RegisterFile::releaseExcessCapacity): Copy-paste typo.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/interpreter/RegisterFile.cpp

    r43885 r43886  
    4848    while (madvise(m_start, (m_max - m_start) * sizeof(Register), MADV_FREE) == -1 && errno == EAGAIN) { }
    4949#elif HAVE(VIRTUALALLOC)
    50     VirtualFree(madvise(m_start, (m_max - m_start) * sizeof(Register), MEM_DECOMMIT);
     50    VirtualFree(m_start, (m_max - m_start) * sizeof(Register), MEM_DECOMMIT);
    5151    m_commitEnd = m_start;
    5252#endif
Note: See TracChangeset for help on using the changeset viewer.