summaryrefslogtreecommitdiffstats
path: root/llvm/lib/System/Win32/Memory.inc
diff options
context:
space:
mode:
authorReid Kleckner <reid@kleckner.net>2009-07-23 01:40:54 +0000
committerReid Kleckner <reid@kleckner.net>2009-07-23 01:40:54 +0000
commit921673225cee9a4d5b3ee6372fb15d851e82a238 (patch)
tree91e9aa919566f97de1deffc7d86f3630f3f4ad18 /llvm/lib/System/Win32/Memory.inc
parent57421f3e0f205798259ce9066ba04c62de951bda (diff)
downloadbcm5719-llvm-921673225cee9a4d5b3ee6372fb15d851e82a238.tar.gz
bcm5719-llvm-921673225cee9a4d5b3ee6372fb15d851e82a238.zip
Reverting r76825 and r76828, since they caused clang runtime errors and some build failure involving memset.
llvm-svn: 76838
Diffstat (limited to 'llvm/lib/System/Win32/Memory.inc')
-rw-r--r--llvm/lib/System/Win32/Memory.inc7
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/lib/System/Win32/Memory.inc b/llvm/lib/System/Win32/Memory.inc
index 7611ecdb929..5e5cf7a6762 100644
--- a/llvm/lib/System/Win32/Memory.inc
+++ b/llvm/lib/System/Win32/Memory.inc
@@ -13,7 +13,6 @@
//===----------------------------------------------------------------------===//
#include "Win32.h"
-#include "llvm/Support/DataTypes.h"
#include "llvm/System/Process.h"
namespace llvm {
@@ -24,13 +23,13 @@ using namespace sys;
//=== and must not be UNIX code
//===----------------------------------------------------------------------===//
-MemoryBlock Memory::AllocateRWX(size_t NumBytes,
+MemoryBlock Memory::AllocateRWX(unsigned NumBytes,
const MemoryBlock *NearBlock,
std::string *ErrMsg) {
if (NumBytes == 0) return MemoryBlock();
- static const size_t pageSize = Process::GetPageSize();
- size_t NumPages = (NumBytes+pageSize-1)/pageSize;
+ static const long pageSize = Process::GetPageSize();
+ unsigned NumPages = (NumBytes+pageSize-1)/pageSize;
//FIXME: support NearBlock if ever needed on Win64.
OpenPOWER on IntegriCloud