1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 04:52:54 +02:00

fix a typo duncan noticed!

llvm-svn: 60671
This commit is contained in:
Chris Lattner 2008-12-07 18:21:37 +00:00
parent 3eaab7ff7a
commit 279bab1c8a

View File

@ -156,7 +156,7 @@ namespace llvm {
typedef PointerIntPair<Value*, 1, int> ValueIsLoadPair; typedef PointerIntPair<Value*, 1, int> ValueIsLoadPair;
/// CachedNonLocalPointerInfo - This map stores the cached results of doing /// 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. /// pointer+isload bit, the value is a list of <bb->result> mappings.
typedef DenseMap<ValueIsLoadPair, NonLocalDepInfo>CachedNonLocalPointerInfo; typedef DenseMap<ValueIsLoadPair, NonLocalDepInfo>CachedNonLocalPointerInfo;
CachedNonLocalPointerInfo NonLocalPointerDeps; CachedNonLocalPointerInfo NonLocalPointerDeps;