From 246372f35d6e7025e7ff16ce8d7543e961800a0e Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Fri, 12 Dec 2003 05:06:09 +0000 Subject: [PATCH] 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 --- include/llvm/ExecutionEngine/GenericValue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/ExecutionEngine/GenericValue.h b/include/llvm/ExecutionEngine/GenericValue.h index 0446795d314..3fb66a11515 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; -- 2.34.1