mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-11 16:37:42 +00:00
* 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
This commit is contained in:
parent
531daef154
commit
e05bf2f49c
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user