From: Chris Lattner Date: Sat, 29 Nov 2008 09:22:14 +0000 (+0000) Subject: tidy up some variable names. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=233336ebc588e77dde51ebbc3ce88c2d4304f168;p=oota-llvm.git tidy up some variable names. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60243 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/MemoryDependenceAnalysis.h b/include/llvm/Analysis/MemoryDependenceAnalysis.h index 62dbeb1358b..715784bd54f 100644 --- a/include/llvm/Analysis/MemoryDependenceAnalysis.h +++ b/include/llvm/Analysis/MemoryDependenceAnalysis.h @@ -170,8 +170,8 @@ namespace llvm { /// getNonLocalDependency - Fills the passed-in map with the non-local /// dependencies of the queries. The map will contain NonLocal for /// blocks between the query and its dependencies. - void getNonLocalDependency(Instruction* query, - DenseMap &resp); + void getNonLocalDependency(Instruction *QueryInst, + DenseMap &Result); /// removeInstruction - Remove an instruction from the dependence analysis, /// updating the dependence of instructions that previously depended on it. @@ -201,15 +201,14 @@ namespace llvm { return MemDepResult::getNone(); } - /// verifyRemoved - Verify that the specified instruction does not occur /// in our internal data structures. void verifyRemoved(Instruction *Inst) const; MemDepResult getCallSiteDependency(CallSite C, BasicBlock::iterator ScanIt, BasicBlock *BB); - void nonLocalHelper(Instruction* query, BasicBlock* block, - DenseMap &resp); + void nonLocalHelper(Instruction *Query, BasicBlock *BB, + DenseMap &Result); }; } // End llvm namespace