aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/VMCore/Instruction.cpp5
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);