summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-09-07 16:47:03 +0000
committerChris Lattner <sabre@nondot.org>2001-09-07 16:47:03 +0000
commite8dd6ad040946f01b0bf78f876472a373578e0d7 (patch)
tree285ea372eee9471171954b6978d247414b9b0b3c /llvm/lib
parent49d855ca3106cb5b1be2e5598e5e916be8acf601 (diff)
downloadbcm5719-llvm-e8dd6ad040946f01b0bf78f876472a373578e0d7.tar.gz
bcm5719-llvm-e8dd6ad040946f01b0bf78f876472a373578e0d7.zip
* Support new setname interface
* Add assertion for sanity checking llvm-svn: 461
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/VMCore/Instruction.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/Instruction.cpp b/llvm/lib/VMCore/Instruction.cpp
index ca9469df355..8b37510d354 100644
--- a/llvm/lib/VMCore/Instruction.cpp
+++ b/llvm/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);
OpenPOWER on IntegriCloud