From: Nick Lewycky Date: Thu, 14 Feb 2008 07:11:24 +0000 (+0000) Subject: Fix PR2032. Inform the alias analysis of changes to the underlying program. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=95f0ba2703b2a49fb6f2373703fb42915774ee94;p=oota-llvm.git Fix PR2032. Inform the alias analysis of changes to the underlying program. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47111 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/GVN.cpp b/lib/Transforms/Scalar/GVN.cpp index 95bb0ddfbc4..41a23ed6c7c 100644 --- a/lib/Transforms/Scalar/GVN.cpp +++ b/lib/Transforms/Scalar/GVN.cpp @@ -857,6 +857,8 @@ Value *GVN::GetValueForBlock(BasicBlock *BB, LoadInst* orig, PN->addIncoming(val, *PI); } + AliasAnalysis& AA = getAnalysis(); + AA.copyValue(orig, PN); // Attempt to collapse PHI nodes that are trivially redundant Value* v = CollapsePhi(PN);