From: Hans Wennborg Date: Fri, 3 Jun 2011 17:15:37 +0000 (+0000) Subject: Test commit. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=68df608fd1eeb7f7fb6f7de49ff8cd6382654f79;p=oota-llvm.git Test commit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132558 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/Loads.cpp b/lib/Analysis/Loads.cpp index ab34fd653a7..c5c676b5265 100644 --- a/lib/Analysis/Loads.cpp +++ b/lib/Analysis/Loads.cpp @@ -31,7 +31,7 @@ using namespace llvm; static bool AreEquivalentAddressValues(const Value *A, const Value *B) { // Test if the values are trivially equivalent. if (A == B) return true; - + // Test if the values come from identical arithmetic instructions. // Use isIdenticalToWhenDefined instead of isIdenticalTo because // this function is only used when one address use dominates the @@ -42,7 +42,7 @@ static bool AreEquivalentAddressValues(const Value *A, const Value *B) { if (const Instruction *BI = dyn_cast(B)) if (cast(A)->isIdenticalToWhenDefined(BI)) return true; - + // Otherwise they may not be equivalent. return false; }