diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-21 17:39:59 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-21 17:39:59 +0000 |
commit | 389dbfbd8b0e49968a3ddaee90c3486b4740f146 (patch) | |
tree | e7dfb1f5ad3a5b08b5db3c2f1b6aeaefd5c99ce7 /lib/Bytecode/Writer/SlotCalculator.cpp | |
parent | 08d702b61db4d6140ffede9a93354d199b436e4b (diff) |
Fix problem which effected linking apache
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9335 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Writer/SlotCalculator.cpp')
-rw-r--r-- | lib/Bytecode/Writer/SlotCalculator.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/Bytecode/Writer/SlotCalculator.cpp b/lib/Bytecode/Writer/SlotCalculator.cpp index f527b1838f..7b4a6da179 100644 --- a/lib/Bytecode/Writer/SlotCalculator.cpp +++ b/lib/Bytecode/Writer/SlotCalculator.cpp @@ -174,8 +174,12 @@ void SlotCalculator::incorporateFunction(const Function *F) { SC_DEBUG("Inserting Instructions:\n"); // Add all of the instructions to the type planes... - for_each(inst_begin(F), inst_end(F), - bind_obj(this, &SlotCalculator::getOrCreateSlot)); + for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB) + for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E; ++I) { + getOrCreateSlot(I); + //if (const VANextInst *VAN = dyn_cast<VANextInst>(I)) + // getOrCreateSlot(VAN->getArgType()); + } if (!IgnoreNamedNodes) { SC_DEBUG("Inserting SymbolTable values:\n"); |