Fix the build on win32

llvm-svn: 29302
This commit is contained in:
Chris Lattner 2006-07-26 20:37:11 +00:00
parent 34ff5a1684
commit 2cd0f41681

View File

@ -47,9 +47,10 @@ MemoryBlock Memory::AllocateRWX(unsigned NumBytes,
}
bool Memory::ReleaseRWX(MemoryBlock &M, std::string *ErrMsg) {
if (M.Address == 0 || M.Size == 0) return;
if (M.Address == 0 || M.Size == 0) return false;
if (!VirtualFree(M.Address, 0, MEM_RELEASE))
return GetError("Can't release RWX Memory: ", ErrMsg);
return false;
}
}