summaryrefslogtreecommitdiff
path: root/lib/System/Unix
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-09-16 17:28:18 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-09-16 17:28:18 +0000
commit19a341acb8df340651053c1ebb2403232103445b (patch)
treee9c8ad773a81176468b515b35c5fb29602431291 /lib/System/Unix
parent793df075c999125cd1f26c69b43803bc61d5c12b (diff)
downloadllvm-19a341acb8df340651053c1ebb2403232103445b.tar.gz
llvm-19a341acb8df340651053c1ebb2403232103445b.tar.bz2
llvm-19a341acb8df340651053c1ebb2403232103445b.tar.xz
AllocateRWXMemory -> AllocateRWX.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56244 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Unix')
-rw-r--r--lib/System/Unix/Memory.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/System/Unix/Memory.inc b/lib/System/Unix/Memory.inc
index 0b74f74f7b..621184e426 100644
--- a/lib/System/Unix/Memory.inc
+++ b/lib/System/Unix/Memory.inc
@@ -18,7 +18,7 @@
#include <sys/mman.h>
#endif
-/// AllocateRWXMemory - Allocate a slab of memory with read/write/execute
+/// AllocateRWX - Allocate a slab of memory with read/write/execute
/// permissions. This is typically used for JIT applications where we want
/// to emit code to the memory then jump to it. Getting this type of memory
/// is very OS specific.