From: Brian Gaeke Date: Fri, 12 Dec 2003 05:06:09 +0000 (+0000) Subject: Use uintptr_t for pointer values in the ExecutionEngine. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=246372f35d6e7025e7ff16ce8d7543e961800a0e;p=oota-llvm.git 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 --- 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;