tidy up some variable names.

llvm-svn: 60243
This commit is contained in:
Chris Lattner 2008-11-29 09:22:14 +00:00
parent 5feffd1b9b
commit 0ac821f149

View File

@ -170,8 +170,8 @@ namespace llvm {
/// getNonLocalDependency - Fills the passed-in map with the non-local /// getNonLocalDependency - Fills the passed-in map with the non-local
/// dependencies of the queries. The map will contain NonLocal for /// dependencies of the queries. The map will contain NonLocal for
/// blocks between the query and its dependencies. /// blocks between the query and its dependencies.
void getNonLocalDependency(Instruction* query, void getNonLocalDependency(Instruction *QueryInst,
DenseMap<BasicBlock*, MemDepResult> &resp); DenseMap<BasicBlock*, MemDepResult> &Result);
/// removeInstruction - Remove an instruction from the dependence analysis, /// removeInstruction - Remove an instruction from the dependence analysis,
/// updating the dependence of instructions that previously depended on it. /// updating the dependence of instructions that previously depended on it.
@ -201,15 +201,14 @@ namespace llvm {
return MemDepResult::getNone(); return MemDepResult::getNone();
} }
/// verifyRemoved - Verify that the specified instruction does not occur /// verifyRemoved - Verify that the specified instruction does not occur
/// in our internal data structures. /// in our internal data structures.
void verifyRemoved(Instruction *Inst) const; void verifyRemoved(Instruction *Inst) const;
MemDepResult getCallSiteDependency(CallSite C, BasicBlock::iterator ScanIt, MemDepResult getCallSiteDependency(CallSite C, BasicBlock::iterator ScanIt,
BasicBlock *BB); BasicBlock *BB);
void nonLocalHelper(Instruction* query, BasicBlock* block, void nonLocalHelper(Instruction *Query, BasicBlock *BB,
DenseMap<BasicBlock*, DepResultTy> &resp); DenseMap<BasicBlock*, DepResultTy> &Result);
}; };
} // End llvm namespace } // End llvm namespace