diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-12-12 05:06:09 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-12-12 05:06:09 +0000 |
commit | 246372f35d6e7025e7ff16ce8d7543e961800a0e (patch) | |
tree | 49fe1064e571535a5731df01ab523f5733eb50d7 | |
parent | 92c59d60c9ec8c0bb3989f4c08cf9d2be48c0ca5 (diff) | |
download | external_llvm-246372f35d6e7025e7ff16ce8d7543e961800a0e.zip external_llvm-246372f35d6e7025e7ff16ce8d7543e961800a0e.tar.gz external_llvm-246372f35d6e7025e7ff16ce8d7543e961800a0e.tar.bz2 |
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
-rw-r--r-- | include/llvm/ExecutionEngine/GenericValue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ExecutionEngine/GenericValue.h b/include/llvm/ExecutionEngine/GenericValue.h index 0446795..3fb66a1 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; |