diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-05 19:51:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-05 19:51:50 +0000 |
commit | 0d1e40728d668085257b78657b381e1f13d77d52 (patch) | |
tree | 00e51cc189ccb0faa187276ed1c6ca5f2d953b9e /include/llvm/Function.h | |
parent | 7acff25f7f48ccbc8ca55032a59bfd4102ebed72 (diff) |
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/Function.h')
-rw-r--r-- | include/llvm/Function.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/Function.h b/include/llvm/Function.h index 112958002c..05ac47ddd6 100644 --- a/include/llvm/Function.h +++ b/include/llvm/Function.h @@ -85,9 +85,6 @@ public: const std::string &N = "", Module *M = 0); ~Function(); - // Specialize setName to handle symbol table majik. - virtual void setName(const std::string &name); - const Type *getReturnType() const; // Return the type of the ret val const FunctionType *getFunctionType() const; // Return the FunctionType for me |