[llvm-commits] [llvm] r60353 - /llvm/trunk/include/llvm/Analysis/MemoryDependenceAnalysis.h

Chris Lattner sabre at nondot.org
Mon Dec 1 08:55:38 PST 2008


Author: lattner
Date: Mon Dec  1 10:55:19 2008
New Revision: 60353

URL: http://llvm.org/viewvc/llvm-project?rev=60353&view=rev
Log:
cleanups suggested by duncan, thanks!

Modified:
    llvm/trunk/include/llvm/Analysis/MemoryDependenceAnalysis.h

Modified: llvm/trunk/include/llvm/Analysis/MemoryDependenceAnalysis.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/MemoryDependenceAnalysis.h?rev=60353&r1=60352&r2=60353&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Analysis/MemoryDependenceAnalysis.h (original)
+++ llvm/trunk/include/llvm/Analysis/MemoryDependenceAnalysis.h Mon Dec  1 10:55:19 2008
@@ -35,6 +35,7 @@
     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 @@
     void verifyRemoved(Instruction *Inst) const;
     
     MemDepResult getCallSiteDependency(CallSite C, BasicBlock::iterator ScanIt,
-                                      BasicBlock *BB);
+                                       BasicBlock *BB);
   };
 
 } // End llvm namespace





More information about the llvm-commits mailing list