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

Chris Lattner sabre at nondot.org
Sun Dec 7 10:21:39 PST 2008


Author: lattner
Date: Sun Dec  7 12:21:37 2008
New Revision: 60671

URL: http://llvm.org/viewvc/llvm-project?rev=60671&view=rev
Log:
fix a typo duncan noticed!

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=60671&r1=60670&r2=60671&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Analysis/MemoryDependenceAnalysis.h (original)
+++ llvm/trunk/include/llvm/Analysis/MemoryDependenceAnalysis.h Sun Dec  7 12:21:37 2008
@@ -156,7 +156,7 @@
     typedef PointerIntPair<Value*, 1, int> ValueIsLoadPair;
     
     /// CachedNonLocalPointerInfo - This map stores the cached results of doing
-    /// a pointer lookup at the bottom of a block.  Key key of this map is the
+    /// a pointer lookup at the bottom of a block.  The key of this map is the
     /// pointer+isload bit, the value is a list of <bb->result> mappings.
     typedef DenseMap<ValueIsLoadPair, NonLocalDepInfo>CachedNonLocalPointerInfo;
     CachedNonLocalPointerInfo NonLocalPointerDeps;





More information about the llvm-commits mailing list