OSDN Git Service

cleanups suggested by duncan, thanks!
authorChris Lattner <sabre@nondot.org>
Mon, 1 Dec 2008 16:55:19 +0000 (16:55 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 1 Dec 2008 16:55:19 +0000 (16:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60353 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/MemoryDependenceAnalysis.h

index c9a142e..5e06121 100644 (file)
@@ -35,6 +35,7 @@ namespace llvm {
     enum DepType {
       /// Invalid - Clients of MemDep never see this.
       Invalid = 0,
+      
       /// Normal - This is a normal instruction dependence.  The pointer member
       /// of the MemDepResult pair holds the instruction.
       Normal,
@@ -216,7 +217,7 @@ namespace llvm {
     void verifyRemoved(Instruction *Inst) const;
     
     MemDepResult getCallSiteDependency(CallSite C, BasicBlock::iterator ScanIt,
-                                      BasicBlock *BB);
+                                       BasicBlock *BB);
   };
 
 } // End llvm namespace