aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/SparcV9/InstrSelection/InstrForest.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-07-23 03:50:57 +0000
committerChris Lattner <sabre@nondot.org>2001-07-23 03:50:57 +0000
commit75279ccc759499704655a581bacb8dafb3c32b71 (patch)
tree7e173bf5aa5ff69d5e3b1f87f630d4129212c441 /lib/Target/SparcV9/InstrSelection/InstrForest.cpp
parent6c5a32d545f65623fcbb69937406f80e0715931a (diff)
downloadexternal_llvm-75279ccc759499704655a581bacb8dafb3c32b71.zip
external_llvm-75279ccc759499704655a581bacb8dafb3c32b71.tar.gz
external_llvm-75279ccc759499704655a581bacb8dafb3c32b71.tar.bz2
Clean up hash table usage
Remove opaque pointer used for C compatibility which isn't an issue git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@275 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SparcV9/InstrSelection/InstrForest.cpp')
-rw-r--r--lib/Target/SparcV9/InstrSelection/InstrForest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/SparcV9/InstrSelection/InstrForest.cpp b/lib/Target/SparcV9/InstrSelection/InstrForest.cpp
index 5701ba4..a1afede 100644
--- a/lib/Target/SparcV9/InstrSelection/InstrForest.cpp
+++ b/lib/Target/SparcV9/InstrSelection/InstrForest.cpp
@@ -253,7 +253,7 @@ InstrForest::buildTreesForMethod(Method *method)
void
InstrForest::dump() const
{
- for (hash_set<InstructionNode*, ptrHashFunc >::const_iterator
+ for (hash_set<InstructionNode*>::const_iterator
treeRootIter = treeRoots.begin();
treeRootIter != treeRoots.end();
++treeRootIter)