diff options
author | Chris Lattner <sabre@nondot.org> | 2001-09-07 16:16:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-09-07 16:16:57 +0000 |
commit | 2cb0722c00707c04be1bee9f9f6094bdf1069cbf (patch) | |
tree | 6472a477b657e8bd65ac40bfdf27282b86d477dc | |
parent | 53aaefe18a2bfcd3ed5c8b83762b7cb7b70efe84 (diff) |
Changing setName semantics
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@417 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/BasicBlock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/BasicBlock.h b/include/llvm/BasicBlock.h index aa201c3c84..fc41a12156 100644 --- a/include/llvm/BasicBlock.h +++ b/include/llvm/BasicBlock.h @@ -57,7 +57,7 @@ public: ~BasicBlock(); // Specialize setName to take care of symbol table majik - virtual void setName(const string &name); + virtual void setName(const string &name, SymbolTable *ST = 0); const Method *getParent() const { return InstList.getParent(); } Method *getParent() { return InstList.getParent(); } |