Changeset 39600 in webkit for trunk/JavaScriptCore/jit
- Timestamp:
- Jan 5, 2009, 9:21:13 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/ExecutableAllocatorPosix.cpp
r39096 r39600 48 48 void ExecutablePool::systemRelease(const ExecutablePool::Allocation& alloc) 49 49 { 50 i f (munmap(alloc.pages, alloc.size))51 ASSERT_NOT_REACHED();50 int result = munmap(alloc.pages, alloc.size); 51 ASSERT_UNUSED(result, !result); 52 52 } 53 53
Note:
See TracChangeset
for help on using the changeset viewer.