diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-12 05:18:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-12 05:18:08 +0000 |
commit | dec628eead87b20773c98a00830580df211acc98 (patch) | |
tree | cb28286b21387a97519f3e30c757c4fa07b904c5 /lib/Bytecode/Writer/SlotCalculator.cpp | |
parent | fa48e9612e52adada82b3d74f9a8e2c35c960b36 (diff) |
Switch ValueSymbolTable to use StringMap<Value*> instead of std::map<std::string, Value*>
as its main datastructure. There are many improvements yet to be made, but
this speeds up opt --std-compile-opts on 447.dealII by 7.3%.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34193 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Writer/SlotCalculator.cpp')
-rw-r--r-- | lib/Bytecode/Writer/SlotCalculator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bytecode/Writer/SlotCalculator.cpp b/lib/Bytecode/Writer/SlotCalculator.cpp index 0c8ba48be7..43ad922e2b 100644 --- a/lib/Bytecode/Writer/SlotCalculator.cpp +++ b/lib/Bytecode/Writer/SlotCalculator.cpp @@ -199,7 +199,7 @@ void SlotCalculator::processTypeSymbolTable(const TypeSymbolTable *TST) { void SlotCalculator::processValueSymbolTable(const ValueSymbolTable *VST) { for (ValueSymbolTable::const_iterator VI = VST->begin(), VE = VST->end(); VI != VE; ++VI) - CreateSlotIfNeeded(VI->second); + CreateSlotIfNeeded(VI->getValue()); } void SlotCalculator::CreateSlotIfNeeded(const Value *V) { |