[llvm-commits] [llvm] r60243 -	/llvm/trunk/include/llvm/Analysis/MemoryDependenceAnalysis.h
    Chris Lattner 
    sabre at nondot.org
       
    Sat Nov 29 01:22:14 PST 2008
    
    
  
Author: lattner
Date: Sat Nov 29 03:22:14 2008
New Revision: 60243
URL: http://llvm.org/viewvc/llvm-project?rev=60243&view=rev
Log:
tidy up some variable names.
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=60243&r1=60242&r2=60243&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/MemoryDependenceAnalysis.h (original)
+++ llvm/trunk/include/llvm/Analysis/MemoryDependenceAnalysis.h Sat Nov 29 03:22:14 2008
@@ -170,8 +170,8 @@
     /// 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<BasicBlock*, MemDepResult> &resp);
+    void getNonLocalDependency(Instruction *QueryInst,
+                               DenseMap<BasicBlock*, MemDepResult> &Result);
     
     /// removeInstruction - Remove an instruction from the dependence analysis,
     /// updating the dependence of instructions that previously depended on it.
@@ -201,15 +201,14 @@
       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<BasicBlock*, DepResultTy> &resp);
+    void nonLocalHelper(Instruction *Query, BasicBlock *BB,
+                        DenseMap<BasicBlock*, DepResultTy> &Result);
   };
 
 } // End llvm namespace
    
    
More information about the llvm-commits
mailing list