diff options
author | Dan Gohman <gohman@apple.com> | 2009-04-01 18:45:54 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-04-01 18:45:54 +0000 |
commit | de551f91d8816632a76a065084caab9fab6aacff (patch) | |
tree | faf864647d57a6d0f3e6e16f199b0559be489e5f /lib/ExecutionEngine/JIT/JITMemoryManager.cpp | |
parent | ef66abeaeef425927821ddc331d5c14138efe258 (diff) |
Use CHAR_BIT instead of hard-coding 8 in several places where it
is appropriate. This helps visually differentiate host-oriented
calculations from target-oriented calculations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68227 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/JIT/JITMemoryManager.cpp')
-rw-r--r-- | lib/ExecutionEngine/JIT/JITMemoryManager.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/JIT/JITMemoryManager.cpp b/lib/ExecutionEngine/JIT/JITMemoryManager.cpp index b2bf8529d4..2819b6d465 100644 --- a/lib/ExecutionEngine/JIT/JITMemoryManager.cpp +++ b/lib/ExecutionEngine/JIT/JITMemoryManager.cpp @@ -18,6 +18,7 @@ #include <map> #include <vector> #include <cassert> +#include <climits> #include <cstdio> #include <cstdlib> #include <cstring> @@ -48,7 +49,7 @@ namespace { /// BlockSize - This is the size in bytes of this memory block, /// including this header. - uintptr_t BlockSize : (sizeof(intptr_t)*8 - 2); + uintptr_t BlockSize : (sizeof(intptr_t)*CHAR_BIT - 2); /// getBlockAfter - Return the memory block immediately after this one. |