From: Chris Lattner Date: Fri, 7 Sep 2001 16:47:18 +0000 (+0000) Subject: Support new setName interface X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7c43a0ace7af881e86625705542ee2cf640d5c7b;p=oota-llvm.git Support new setName interface git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@462 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Function.cpp b/lib/VMCore/Function.cpp index 3d4a3547b0d..bd342a2473c 100644 --- a/lib/VMCore/Function.cpp +++ b/lib/VMCore/Function.cpp @@ -39,8 +39,10 @@ Method::~Method() { } // Specialize setName to take care of symbol table majik -void Method::setName(const string &name) { +void Method::setName(const string &name, SymbolTable *ST) { Module *P; + assert((ST == 0 || (!getParent() || ST == getParent()->getSymbolTable())) && + "Invalid symtab argument!"); if ((P = getParent()) && hasName()) P->getSymbolTable()->remove(this); Value::setName(name); if (P && getName() != "") P->getSymbolTableSure()->insert(this); diff --git a/lib/VMCore/InstrTypes.cpp b/lib/VMCore/InstrTypes.cpp index d0c410051a5..dbace177a98 100644 --- a/lib/VMCore/InstrTypes.cpp +++ b/lib/VMCore/InstrTypes.cpp @@ -25,8 +25,10 @@ TerminatorInst::TerminatorInst(unsigned iType) //===----------------------------------------------------------------------===// // Specialize setName to take care of symbol table majik -void MethodArgument::setName(const string &name) { +void MethodArgument::setName(const string &name, SymbolTable *ST) { Method *P; + assert((ST == 0 || (!getParent() || ST == getParent()->getSymbolTable())) && + "Invalid symtab argument!"); if ((P = getParent()) && hasName()) P->getSymbolTable()->remove(this); Value::setName(name); if (P && hasName()) P->getSymbolTable()->insert(this);