From 03d7651c3652e1f0cc86e79b26585d86818da9cf Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Sat, 25 Jul 2009 23:55:21 +0000 Subject: Remove Value::{isName, getNameRef}. Also, change MDString to use a StringRef. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77098 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Value.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'include/llvm/Value.h') diff --git a/include/llvm/Value.h b/include/llvm/Value.h index 1f5bd7f..584b80e 100644 --- a/include/llvm/Value.h +++ b/include/llvm/Value.h @@ -118,10 +118,6 @@ public: /// getNameEnd - Return a pointer to the end of the name. const char *getNameEnd() const { return getNameStart() + getNameLen(); } - /// isName - Return true if this value has the name specified by the provided - /// nul terminated string. - bool isName(const char *N) const; - /// getNameLen - Return the length of the string, correctly handling nul /// characters embedded into them. unsigned getNameLen() const; @@ -131,7 +127,6 @@ public: /// construct a string, they are very expensive and should be avoided. StringRef getName() const { return StringRef(getNameStart(), getNameLen()); } std::string getNameStr() const; - StringRef getNameRef() const; void setName(const Twine &Name); void setName(const char *Name, unsigned NameLen); -- cgit v1.1