diff options
Diffstat (limited to 'llvm/lib/System/Win32/Memory.inc')
-rw-r--r-- | llvm/lib/System/Win32/Memory.inc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/lib/System/Win32/Memory.inc b/llvm/lib/System/Win32/Memory.inc index eed2b100e6d..620801583a0 100644 --- a/llvm/lib/System/Win32/Memory.inc +++ b/llvm/lib/System/Win32/Memory.inc @@ -53,5 +53,13 @@ bool Memory::ReleaseRWX(MemoryBlock &M, std::string *ErrMsg) { return false; } +bool Memory::setWritable (MemoryBlock &M, std::string *ErrMsg) { + return true; +} + +bool Memory::setExecutable (MemoryBlock &M, std::string *ErrMsg) { + return false; +} + } |