cleanups suggested by duncan, thanks!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60353 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2008-12-01 16:55:19 +00:00
parent 545fc87454
commit 0f41ad3bc9

View File

@ -35,6 +35,7 @@ namespace llvm {
enum DepType { enum DepType {
/// Invalid - Clients of MemDep never see this. /// Invalid - Clients of MemDep never see this.
Invalid = 0, Invalid = 0,
/// Normal - This is a normal instruction dependence. The pointer member /// Normal - This is a normal instruction dependence. The pointer member
/// of the MemDepResult pair holds the instruction. /// of the MemDepResult pair holds the instruction.
Normal, Normal,
@ -216,7 +217,7 @@ namespace llvm {
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);
}; };
} // End llvm namespace } // End llvm namespace