summaryrefslogtreecommitdiff
path: root/include/llvm/Argument.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-03-05 19:51:50 +0000
committerChris Lattner <sabre@nondot.org>2005-03-05 19:51:50 +0000
commit0d1e40728d668085257b78657b381e1f13d77d52 (patch)
tree00e51cc189ccb0faa187276ed1c6ca5f2d953b9e /include/llvm/Argument.h
parent7acff25f7f48ccbc8ca55032a59bfd4102ebed72 (diff)
downloadllvm-0d1e40728d668085257b78657b381e1f13d77d52.tar.gz
llvm-0d1e40728d668085257b78657b381e1f13d77d52.tar.bz2
llvm-0d1e40728d668085257b78657b381e1f13d77d52.tar.xz
remove all of the various setName implementations, consolidating them into
Value::setName, which is no longer virtual. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20464 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Argument.h')
-rw-r--r--include/llvm/Argument.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/Argument.h b/include/llvm/Argument.h
index 51e53b17bd..3c38cdea03 100644
--- a/include/llvm/Argument.h
+++ b/include/llvm/Argument.h
@@ -39,9 +39,6 @@ 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);
-
inline const Function *getParent() const { return Parent; }
inline Function *getParent() { return Parent; }