summaryrefslogtreecommitdiff
path: root/include/llvm/ExecutionEngine
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-12-12 05:06:09 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-12-12 05:06:09 +0000
commit246372f35d6e7025e7ff16ce8d7543e961800a0e (patch)
tree49fe1064e571535a5731df01ab523f5733eb50d7 /include/llvm/ExecutionEngine
parent92c59d60c9ec8c0bb3989f4c08cf9d2be48c0ca5 (diff)
downloadllvm-246372f35d6e7025e7ff16ce8d7543e961800a0e.tar.gz
llvm-246372f35d6e7025e7ff16ce8d7543e961800a0e.tar.bz2
llvm-246372f35d6e7025e7ff16ce8d7543e961800a0e.tar.xz
Use uintptr_t for pointer values in the ExecutionEngine.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10425 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ExecutionEngine')
-rw-r--r--include/llvm/ExecutionEngine/GenericValue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ExecutionEngine/GenericValue.h b/include/llvm/ExecutionEngine/GenericValue.h
index 0446795d31..3fb66a1151 100644
--- a/include/llvm/ExecutionEngine/GenericValue.h
+++ b/include/llvm/ExecutionEngine/GenericValue.h
@@ -19,7 +19,7 @@
namespace llvm {
-typedef uint64_t PointerTy;
+typedef uintptr_t PointerTy;
union GenericValue {
bool BoolVal;