aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Analysis/MemoryDependenceAnalysis.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-12-07 18:21:37 +0000
committerChris Lattner <sabre@nondot.org>2008-12-07 18:21:37 +0000
commite91a4881e17127686345f62df08da6370b14d51f (patch)
treec3bf18d29d1d7c4dc45701cd336768551caff24c /include/llvm/Analysis/MemoryDependenceAnalysis.h
parentf76eda70fa4b0cbff1069fe614aea64ad42354a3 (diff)
downloadexternal_llvm-e91a4881e17127686345f62df08da6370b14d51f.zip
external_llvm-e91a4881e17127686345f62df08da6370b14d51f.tar.gz
external_llvm-e91a4881e17127686345f62df08da6370b14d51f.tar.bz2
fix a typo duncan noticed!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60671 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/MemoryDependenceAnalysis.h')
-rw-r--r--include/llvm/Analysis/MemoryDependenceAnalysis.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/MemoryDependenceAnalysis.h b/include/llvm/Analysis/MemoryDependenceAnalysis.h
index 6a1df11..55df36d 100644
--- a/include/llvm/Analysis/MemoryDependenceAnalysis.h
+++ b/include/llvm/Analysis/MemoryDependenceAnalysis.h
@@ -156,7 +156,7 @@ namespace llvm {
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;