Changeset 158313 in webkit


Ignore:
Timestamp:
Oct 30, 2013 1:59:18 PM (10 years ago)
Author:
fpizlo@apple.com
Message:

Unreviewed, fix Mac.

  • assembler/AbstractMacroAssembler.h:

(JSC::AbstractMacroAssembler::RegisterAllocationOffset::checkOffsets):
(JSC::AbstractMacroAssembler::checkRegisterAllocationAgainstBranchRange):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r158308 r158313  
     12013-10-30  Filip Pizlo  <fpizlo@apple.com>
     2
     3        Unreviewed, fix Mac.
     4
     5        * assembler/AbstractMacroAssembler.h:
     6        (JSC::AbstractMacroAssembler::RegisterAllocationOffset::checkOffsets):
     7        (JSC::AbstractMacroAssembler::checkRegisterAllocationAgainstBranchRange):
     8
    192013-10-30  Filip Pizlo  <fpizlo@apple.com>
    210
  • trunk/Source/JavaScriptCore/assembler/AbstractMacroAssembler.h

    r158304 r158313  
    770770        }
    771771
    772         void check(unsigned low, unsigned high)
     772        void checkOffsets(unsigned low, unsigned high)
    773773        {
    774774            RELEASE_ASSERT_WITH_MESSAGE(!(low <= m_offset && m_offset <= high), "Unsafe branch over register allocation at instruction offset %u in jump offset range %u..%u", m_offset, low, high);
     
    796796        size_t size = m_registerAllocationForOffsets.size();
    797797        for (size_t i = 0; i < size; ++i)
    798             m_registerAllocationForOffsets[i].check(offset1, offset2);
     798            m_registerAllocationForOffsets[i].checkOffsets(offset1, offset2);
    799799    }
    800800#endif
Note: See TracChangeset for help on using the changeset viewer.