diff options
author | Chris Lattner <sabre@nondot.org> | 2001-09-07 16:47:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-09-07 16:47:03 +0000 |
commit | e05bf2f49caa7682c8c4ce39e03e6c596fc63bcc (patch) | |
tree | e1a5475ba7342e643ada8cc436ac6412029bdd60 | |
parent | 531daef1542fd6a958c509ccbb6390d33496aae9 (diff) |
* Support new setname interface
* Add assertion for sanity checking
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@461 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/VMCore/Instruction.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/VMCore/Instruction.cpp b/lib/VMCore/Instruction.cpp index ca9469df35..8b37510d35 100644 --- a/lib/VMCore/Instruction.cpp +++ b/lib/VMCore/Instruction.cpp @@ -23,8 +23,11 @@ Instruction::~Instruction() { } // Specialize setName to take care of symbol table majik -void Instruction::setName(const string &name) { +void Instruction::setName(const string &name, SymbolTable *ST) { BasicBlock *P = 0; Method *PP = 0; + assert((ST == 0 || !getParent() || !getParent()->getParent() || + ST == getParent()->getParent()->getSymbolTable()) && + "Invalid symtab argument!"); if ((P = getParent()) && (PP = P->getParent()) && hasName()) PP->getSymbolTable()->remove(this); Value::setName(name); |