diff options
author | Chris Lattner <sabre@nondot.org> | 2001-09-07 16:19:55 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-09-07 16:19:55 +0000 |
commit | be4c4001f416889fff216e74b5130b3d27d0df2a (patch) | |
tree | c3657a5fc4f11bb76a09cb805560f48dd76ac29b | |
parent | 2cac6d2ef4c0147958fcadb958a5fe8f4e1bf7d2 (diff) |
Support new setName interface
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@421 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Instruction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Instruction.h b/include/llvm/Instruction.h index 978af62c31..2bb590bc5e 100644 --- a/include/llvm/Instruction.h +++ b/include/llvm/Instruction.h @@ -29,7 +29,7 @@ public: virtual ~Instruction(); // Virtual dtor == good. // Specialize setName to handle symbol table majik... - virtual void setName(const string &name); + virtual void setName(const string &name, SymbolTable *ST = 0); // clone() - Create a copy of 'this' instruction that is identical in all ways // except the following: |