Changeset 39077 in webkit for trunk/JavaScriptCore


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):
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r39072 r39077  
     12008-12-06  Sam Weinig  <[email protected]>
     2
     3        Fix the Gtk build.
     4
     5        * jit/JITPropertyAccess.cpp:
     6        (JSC::JIT::compileGetByIdHotPath):
     7        (JSC::JIT::compilePutByIdHotPath):
     8
    192008-12-06  Sam Weinig  <[email protected]>
    210
  • 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.