[llvm-commits] CVS: llvm/lib/System/Darwin/Memory.cpp
Misha Brukman
brukman at cs.uiuc.edu
Mon Oct 18 22:56:04 PDT 2004
Changes in directory llvm/lib/System/Darwin:
Memory.cpp updated: 1.2 -> 1.3
---
Log message:
Fix some grammar
---
Diffs of the changes: (+3 -3)
Index: llvm/lib/System/Darwin/Memory.cpp
diff -u llvm/lib/System/Darwin/Memory.cpp:1.2 llvm/lib/System/Darwin/Memory.cpp:1.3
--- llvm/lib/System/Darwin/Memory.cpp:1.2 Mon Sep 13 17:38:12 2004
+++ llvm/lib/System/Darwin/Memory.cpp Tue Oct 19 00:55:54 2004
@@ -21,14 +21,14 @@
using namespace sys;
//===----------------------------------------------------------------------===//
-//=== WARNING: Implementation here must contain only Darwin specific code
+//=== WARNING: Implementation here must contain only Darwin-specific code
//=== and must not be generic UNIX code (see ../Unix/Memory.cpp)
//===----------------------------------------------------------------------===//
/// AllocateRWXMemory - 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.
+/// to emit code to the memory and then jump to it. Getting this type of memory
+/// is very OS-specific.
///
MemoryBlock Memory::AllocateRWX(unsigned NumBytes) {
if (NumBytes == 0) return MemoryBlock();
More information about the llvm-commits
mailing list