diff options
author | Chris Lattner <sabre@nondot.org> | 2002-11-20 18:36:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-11-20 18:36:02 +0000 |
commit | 98cf1f5d64b0ed95e38842e89f42a11661e9ede7 (patch) | |
tree | e116821d17ad7bca39cd763e1705f69b7b405bc5 /llvm/lib/VMCore/BasicBlock.cpp | |
parent | 7c6d9d9eaca381cdeba24640ffcdce297851feb1 (diff) | |
download | bcm5719-llvm-98cf1f5d64b0ed95e38842e89f42a11661e9ede7.tar.gz bcm5719-llvm-98cf1f5d64b0ed95e38842e89f42a11661e9ede7.zip |
- Eliminated the deferred symbol table stuff in Module & Function, it really
wasn't an optimization and it was causing lots of bugs.
llvm-svn: 4779
Diffstat (limited to 'llvm/lib/VMCore/BasicBlock.cpp')
-rw-r--r-- | llvm/lib/VMCore/BasicBlock.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/VMCore/BasicBlock.cpp b/llvm/lib/VMCore/BasicBlock.cpp index 6ddcc08c828..89f9a27f8da 100644 --- a/llvm/lib/VMCore/BasicBlock.cpp +++ b/llvm/lib/VMCore/BasicBlock.cpp @@ -105,11 +105,11 @@ void BasicBlock::setParent(Function *parent) { // Specialize setName to take care of symbol table majik void BasicBlock::setName(const std::string &name, SymbolTable *ST) { Function *P; - assert((ST == 0 || (!getParent() || ST == getParent()->getSymbolTable())) && + assert((ST == 0 || (!getParent() || ST == &getParent()->getSymbolTable())) && "Invalid symtab argument!"); - if ((P = getParent()) && hasName()) P->getSymbolTable()->remove(this); + if ((P = getParent()) && hasName()) P->getSymbolTable().remove(this); Value::setName(name); - if (P && hasName()) P->getSymbolTable()->insert(this); + if (P && hasName()) P->getSymbolTable().insert(this); } TerminatorInst *BasicBlock::getTerminator() { |