Changeset 87527 in webkit for trunk/Source/JavaScriptCore/assembler/AssemblerBuffer.h
- Timestamp:
- May 27, 2011, 11:30:08 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/assembler/AssemblerBuffer.h
r85497 r87527 129 129 } 130 130 131 void* executableCopy( ExecutablePool* allocator)131 void* executableCopy(JSGlobalData& globalData, ExecutablePool* allocator) 132 132 { 133 133 if (!m_index) 134 134 return 0; 135 135 136 void* result = allocator->alloc( m_index);136 void* result = allocator->alloc(globalData, m_index); 137 137 138 138 if (!result)
Note:
See TracChangeset
for help on using the changeset viewer.