Ignore:
Timestamp:
Dec 6, 2008, 8:20:56 PM (16 years ago)
Author:
[email protected]
Message:

2008-12-06 Sam Weinig <[email protected]>

Fix the Gtk build.

  • jit/JITPropertyAccess.cpp: (JSC::JIT::compileGetByIdHotPath): (JSC::JIT::compilePutByIdHotPath):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/jit/JITPropertyAccess.cpp

    r39070 r39077  
    5959    UNUSED_PARAM(propertyAccessInstructionIndex);
    6060#endif
    61     ASSERT(m_codeBlock->propertyAccessInstructions[propertyAccessInstructionIndex].bytecodeIndex == i);
     61    ASSERT(m_codeBlock->propertyAccessInstruction(propertyAccessInstructionIndex).bytecodeIndex == i);
    6262
    6363#ifndef NDEBUG
     
    7171
    7272    // Track the location of the call; this will be used to recover repatch information.
    73     ASSERT(m_codeBlock->propertyAccessInstructions[propertyAccessInstructionIndex].bytecodeIndex == i);
     73    ASSERT(m_codeBlock->propertyAccessInstruction(propertyAccessInstructionIndex).bytecodeIndex == i);
    7474    m_propertyAccessCompilationInfo[propertyAccessInstructionIndex].callReturnLocation = call;
    7575}
     
    9595
    9696    // Track the location of the call; this will be used to recover repatch information.
    97     ASSERT(m_codeBlock->propertyAccessInstructions[propertyAccessInstructionIndex].bytecodeIndex == i);
     97    ASSERT(m_codeBlock->propertyAccessInstruction(propertyAccessInstructionIndex).bytecodeIndex == i);
    9898    m_propertyAccessCompilationInfo[propertyAccessInstructionIndex].callReturnLocation = call;
    9999}
Note: See TracChangeset for help on using the changeset viewer.