From d0478744b3b5232694d0f887b3210078de5266c4 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 5 Mar 2005 18:59:36 +0000 Subject: Remove the second argument to Value::setName, it is never needed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20457 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Argument.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/llvm/Argument.h') diff --git a/include/llvm/Argument.h b/include/llvm/Argument.h index d39c373b0a..51e53b17bd 100644 --- a/include/llvm/Argument.h +++ b/include/llvm/Argument.h @@ -39,8 +39,8 @@ public: /// Argument(const Type *Ty, const std::string &Name = "", Function *F = 0); - /// setName - Specialize setName to handle symbol table majik... - virtual void setName(const std::string &name, SymbolTable *ST = 0); + /// setName - Specialize setName to handle symbol table majik. + virtual void setName(const std::string &name); inline const Function *getParent() const { return Parent; } inline Function *getParent() { return Parent; } -- cgit v1.2.3