Use uintptr_t for pointer values in the ExecutionEngine.
authorBrian Gaeke <gaeke@uiuc.edu>
Fri, 12 Dec 2003 05:06:09 +0000 (05:06 +0000)
committerBrian Gaeke <gaeke@uiuc.edu>
Fri, 12 Dec 2003 05:06:09 +0000 (05:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10425 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ExecutionEngine/GenericValue.h

index 0446795d314d9c4ecb1cd37f20f0af53d5ca4398..3fb66a11515e405224f146e6b220731d2e3766ff 100644 (file)
@@ -19,7 +19,7 @@
 
 namespace llvm {
 
-typedef uint64_t PointerTy;
+typedef uintptr_t PointerTy;
 
 union GenericValue {
   bool            BoolVal;