From 4fbad968f8f7c6a775cf827c53b6900361e03803 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 21 Jul 2004 04:27:24 +0000 Subject: [PATCH] Remove special casing of pointers and treat them generically as integers of the appopriate size. This gives us the ability to eliminate int -> ptr -> int llvm-svn: 15063 --- llvm/lib/Transforms/Scalar/InstructionCombining.cpp | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp index 376222ffe278..4634b6d9c420 100644 --- a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp @@ -1974,14 +1974,11 @@ static inline bool isEliminableCastOfCast(const Type *SrcTy, const Type *MidTy, if (SrcTy == DstTy && SrcTy->isLosslesslyConvertibleTo(MidTy)) return true; - // If the source and destination types are pointer types, and the intermediate - // is an integer type bigger than a pointer, eliminate the casts. - if (isa(SrcTy) && isa(DstTy)) { - if (isa(MidTy)) return true; - - if (MidTy->isInteger() && MidTy->getPrimitiveSize() >= TD->getPointerSize()) - return true; - } + // If we are casting between pointer and integer types, treat pointers as + // integers of the appropriate size for the code below. + if (isa(SrcTy)) SrcTy = TD->getIntPtrType(); + if (isa(MidTy)) MidTy = TD->getIntPtrType(); + if (isa(DstTy)) DstTy = TD->getIntPtrType(); // Allow free casting and conversion of sizes as long as the sign doesn't // change...