diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-16 20:12:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-16 20:12:52 +0000 |
commit | 71759c491c275ed37b6f97f04badf12ba9b3798c (patch) | |
tree | 1d95779019712a387d0ca7b28d7bff4f46a94c70 /lib/Transforms | |
parent | 1b8eaf51098e7e625b9349070077ce9e32a2f785 (diff) |
Fix PR3335 by not turning a store to one address space into a store to another.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62351 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r-- | lib/Transforms/Scalar/InstructionCombining.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 1175374748..c02fabd9c0 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -11169,7 +11169,11 @@ static Instruction *InstCombineStoreToCast(InstCombiner &IC, StoreInst &SI) { if (!SrcPTy->isInteger() && !isa<PointerType>(SrcPTy)) return 0; - if (IC.getTargetData().getTypeSizeInBits(SrcPTy) != + // If the pointers point into different address spaces or if they point to + // values with different sizes, we can't do the transformation. + if (SrcTy->getAddressSpace() != + cast<PointerType>(CI->getType())->getAddressSpace() || + IC.getTargetData().getTypeSizeInBits(SrcPTy) != IC.getTargetData().getTypeSizeInBits(DestPTy)) return 0; |