Changeset 37804 in webkit for trunk/JavaScriptCore/masm
- Timestamp:
- Oct 22, 2008, 8:36:04 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/masm/X86Assembler.h
r37670 r37804 31 31 #include <wtf/Assertions.h> 32 32 #include <wtf/AlwaysInline.h> 33 #include <wtf/FastMalloc.h> 34 33 35 #if HAVE(MMAN) 34 36 #include <sys/mman.h> … … 124 126 return 0; 125 127 126 void* result = fastMalloc(m_index);128 void* result = WTF::fastMallocExecutable(m_index); 127 129 128 130 if (!result)
Note:
See TracChangeset
for help on using the changeset viewer.