diff options
author | Chris Lattner <sabre@nondot.org> | 2008-11-30 02:30:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-11-30 02:30:50 +0000 |
commit | 25f4b2b7a3f1f2bbaf954257e7834ba29a6ede7c (patch) | |
tree | f8fe9da2d1e3608115ea05e1536718c069355e50 /include/llvm/Analysis/MemoryDependenceAnalysis.h | |
parent | f68f310386c8e1772a3e6eba01f09590678a8f96 (diff) |
introduce a typedef, no functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60272 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/MemoryDependenceAnalysis.h')
-rw-r--r-- | include/llvm/Analysis/MemoryDependenceAnalysis.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/llvm/Analysis/MemoryDependenceAnalysis.h b/include/llvm/Analysis/MemoryDependenceAnalysis.h index 01a731730c..66e2f429c9 100644 --- a/include/llvm/Analysis/MemoryDependenceAnalysis.h +++ b/include/llvm/Analysis/MemoryDependenceAnalysis.h @@ -127,10 +127,13 @@ namespace llvm { typedef DenseMap<Instruction*, DepResultTy> LocalDepMapType; LocalDepMapType LocalDeps; + typedef DenseMap<BasicBlock*, DepResultTy> NonLocalDepInfo; + + // A map from instructions to their non-local dependencies. typedef DenseMap<Instruction*, // This is an owning pointer. - DenseMap<BasicBlock*, DepResultTy>*> NonLocalDepMapType; + NonLocalDepInfo*> NonLocalDepMapType; NonLocalDepMapType NonLocalDeps; // A reverse mapping from dependencies to the dependees. This is |