diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-02-24 08:48:04 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-02-24 08:48:04 +0000 |
commit | 6d8f2ca646bc283c31f48b6816d5194c836dfec6 (patch) | |
tree | 7e3f394baaa453a5a785b0d31975c1fc1d3fd6cb /lib/Analysis/MemoryDependenceAnalysis.cpp | |
parent | a86509d4362edf7061bfd38dc08143c07980c838 (diff) | |
download | external_llvm-6d8f2ca646bc283c31f48b6816d5194c836dfec6.zip external_llvm-6d8f2ca646bc283c31f48b6816d5194c836dfec6.tar.gz external_llvm-6d8f2ca646bc283c31f48b6816d5194c836dfec6.tar.bz2 |
Reapply r97010, the speculative revert failed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97036 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/MemoryDependenceAnalysis.cpp')
-rw-r--r-- | lib/Analysis/MemoryDependenceAnalysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/MemoryDependenceAnalysis.cpp b/lib/Analysis/MemoryDependenceAnalysis.cpp index 04641e8..2aa2f17 100644 --- a/lib/Analysis/MemoryDependenceAnalysis.cpp +++ b/lib/Analysis/MemoryDependenceAnalysis.cpp @@ -861,7 +861,7 @@ getNonLocalPointerDepFromBB(const PHITransAddr &Pointer, uint64_t PointeeSize, // Get the PHI translated pointer in this predecessor. This can fail if // not translatable, in which case the getAddr() returns null. PHITransAddr PredPointer(Pointer); - PredPointer.PHITranslateValue(BB, Pred); + PredPointer.PHITranslateValue(BB, Pred, 0); Value *PredPtrVal = PredPointer.getAddr(); |