diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-03-18 16:39:36 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-03-18 16:39:36 +0000 |
commit | 84161c2f683357938cf283f40bd1ef3e61c317f5 (patch) | |
tree | 113033fa0514b733c6f39f93be55cca827d22491 | |
parent | 96622aa063435b1de085489f0e3e49b5912c22da (diff) |
Tidy up.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127883 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Support/Memory.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/Memory.h b/include/llvm/Support/Memory.h index 9c3f85b958..37890e7e4a 100644 --- a/include/llvm/Support/Memory.h +++ b/include/llvm/Support/Memory.h @@ -75,12 +75,12 @@ namespace sys { /// setExecutable - Before the JIT can run a block of code, it has to be /// given read and executable privilege. Return true if it is already r-x /// or the system is able to change its previlege. - static bool setExecutable (MemoryBlock &M, std::string *ErrMsg = 0); + static bool setExecutable(MemoryBlock &M, std::string *ErrMsg = 0); /// setWritable - When adding to a block of code, the JIT may need /// to mark a block of code as RW since the protections are on page /// boundaries, and the JIT internal allocations are not page aligned. - static bool setWritable (MemoryBlock &M, std::string *ErrMsg = 0); + static bool setWritable(MemoryBlock &M, std::string *ErrMsg = 0); /// setRangeExecutable - Mark the page containing a range of addresses /// as executable. |