From: Andreas Bolka Date: Mon, 29 Jun 2009 00:50:26 +0000 (+0000) Subject: Fix case in LDA util function names. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=acd6f8d5d1669e348c7d7978711ce7cae00dcaa7;p=oota-llvm.git Fix case in LDA util function names. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74415 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/LoopDependenceAnalysis.cpp b/lib/Analysis/LoopDependenceAnalysis.cpp index 4912bf27591..ec1d2f1f2ec 100644 --- a/lib/Analysis/LoopDependenceAnalysis.cpp +++ b/lib/Analysis/LoopDependenceAnalysis.cpp @@ -36,17 +36,17 @@ char LoopDependenceAnalysis::ID = 0; // Utility Functions //===----------------------------------------------------------------------===// -static inline bool isMemRefInstr(const Value *I) { +static inline bool IsMemRefInstr(const Value *I) { return isa(I) || isa(I); } -static void getMemRefInstrs( +static void GetMemRefInstrs( const Loop *L, SmallVectorImpl &memrefs) { for (Loop::block_iterator b = L->block_begin(), be = L->block_end(); b != be; ++b) for (BasicBlock::iterator i = (*b)->begin(), ie = (*b)->end(); i != ie; ++i) - if (isMemRefInstr(i)) + if (IsMemRefInstr(i)) memrefs.push_back(i); } @@ -56,7 +56,7 @@ static void getMemRefInstrs( bool LoopDependenceAnalysis::isDependencePair(const Value *x, const Value *y) const { - return isMemRefInstr(x) && isMemRefInstr(y) + return IsMemRefInstr(x) && IsMemRefInstr(y) && (isa(x) || isa(y)); }