diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-09-16 17:28:18 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-09-16 17:28:18 +0000 |
commit | 7c5dbd95e21b406ee08b41356d53b939e3360464 (patch) | |
tree | ef6594a3b86c540a4b69d3d424616a7aed3e4540 | |
parent | a9c71ce5dc3736bebe5867950e3a0f13fb2964e8 (diff) | |
download | bcm5719-llvm-7c5dbd95e21b406ee08b41356d53b939e3360464.tar.gz bcm5719-llvm-7c5dbd95e21b406ee08b41356d53b939e3360464.zip |
AllocateRWXMemory -> AllocateRWX.
llvm-svn: 56244
-rw-r--r-- | llvm/lib/System/Unix/Memory.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/System/Unix/Memory.inc b/llvm/lib/System/Unix/Memory.inc index 0b74f74f7b6..621184e4260 100644 --- a/llvm/lib/System/Unix/Memory.inc +++ b/llvm/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. |