diff options
author | Chris Lattner <sabre@nondot.org> | 2004-10-31 23:01:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-10-31 23:01:34 +0000 |
commit | 4bbf3dfbe614b8d62a0e695ab28ba70824c3a36e (patch) | |
tree | 6034c40235860e3048f5e00510c514e3bd8d0942 /include/llvm | |
parent | 448a4afd2e3534af1c3099fb465a64b6f68911cc (diff) | |
download | external_llvm-4bbf3dfbe614b8d62a0e695ab28ba70824c3a36e.zip external_llvm-4bbf3dfbe614b8d62a0e695ab28ba70824c3a36e.tar.gz external_llvm-4bbf3dfbe614b8d62a0e695ab28ba70824c3a36e.tar.bz2 |
Simplify graph traversal, improve grammar
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17383 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Analysis/DataStructure/EquivClassGraphs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/DataStructure/EquivClassGraphs.h b/include/llvm/Analysis/DataStructure/EquivClassGraphs.h index ea41ac3..a46da41 100644 --- a/include/llvm/Analysis/DataStructure/EquivClassGraphs.h +++ b/include/llvm/Analysis/DataStructure/EquivClassGraphs.h @@ -141,7 +141,7 @@ namespace PA { unsigned processSCC(DSGraph &FG, Function &F, std::vector<Function*> &Stack, unsigned &NextID, - hash_map<Function*, unsigned> &ValMap); + std::map<Function*, unsigned> &ValMap); void processGraph(DSGraph &FG, Function &F); |