summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-02-25 03:50:14 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-02-25 03:50:14 +0000
commit2516e7fb22773bb841a63c64f31fd259620b7b77 (patch)
tree0795c20065c8eccffe70692f6d5eb966e6280082 /lib
parent3d9b85c7543611b39ae903723589a942d10496ea (diff)
downloadllvm-2516e7fb22773bb841a63c64f31fd259620b7b77.tar.gz
llvm-2516e7fb22773bb841a63c64f31fd259620b7b77.tar.bz2
llvm-2516e7fb22773bb841a63c64f31fd259620b7b77.tar.xz
[SROA] Use a more direct way of determining whether we are processing
the destination operand or source operand of a memmove. It so happens that it was impossible for SROA to try to rewrite self-memmove where the operands are *identical*, because either such a think is volatile (and we don't rewrite) or it is non-volatile, and we don't even register it as a use of the alloca. However, making the 'IsDest' test *rely* on this subtle fact is... Very confusing for the reader. We should use the direct and readily available test of the Use* which gives us concrete information about which operand is being rewritten. No functionality changed, I hope! ;] git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202103 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Transforms/Scalar/SROA.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/SROA.cpp b/lib/Transforms/Scalar/SROA.cpp
index 48bf64d0ac..dd87729519 100644
--- a/lib/Transforms/Scalar/SROA.cpp
+++ b/lib/Transforms/Scalar/SROA.cpp
@@ -2428,8 +2428,9 @@ private:
uint64_t NewBeginOffset = std::max(BeginOffset, NewAllocaBeginOffset);
uint64_t NewEndOffset = std::min(EndOffset, NewAllocaEndOffset);
- assert(II.getRawSource() == OldPtr || II.getRawDest() == OldPtr);
- bool IsDest = II.getRawDest() == OldPtr;
+ bool IsDest = &II.getRawDestUse() == OldUse;
+ assert(IsDest && II.getRawDest() == OldPtr ||
+ (!IsDest && II.getRawSource() == OldPtr));
// Compute the relative offset within the transfer.
unsigned IntPtrWidth = DL.getPointerSizeInBits();