[llvm-commits] [llvm] r127883 - /llvm/trunk/include/llvm/Support/Memory.h
Jim Grosbach
grosbach at apple.com
Fri Mar 18 09:39:36 PDT 2011
Author: grosbach
Date: Fri Mar 18 11:39:36 2011
New Revision: 127883
URL: http://llvm.org/viewvc/llvm-project?rev=127883&view=rev
Log:
Tidy up.
Modified:
llvm/trunk/include/llvm/Support/Memory.h
Modified: llvm/trunk/include/llvm/Support/Memory.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/Memory.h?rev=127883&r1=127882&r2=127883&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/Memory.h (original)
+++ llvm/trunk/include/llvm/Support/Memory.h Fri Mar 18 11:39:36 2011
@@ -75,12 +75,12 @@
/// 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.
More information about the llvm-commits
mailing list