From 4462c144e67a2a09744c6b3ca5beadb0c6b16063 Mon Sep 17 00:00:00 2001 From: "Duncan P. N. Exon Smith" Date: Fri, 14 Nov 2014 23:58:20 +0000 Subject: [PATCH] IR: Remove MDString logic for Value::hasName() This isn't necessary after r221960. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222067 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/IR/Value.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/IR/Value.h b/include/llvm/IR/Value.h index efe0cca7bb4..6cd38540f25 100644 --- a/include/llvm/IR/Value.h +++ b/include/llvm/IR/Value.h @@ -226,7 +226,7 @@ public: LLVMContext &getContext() const; // \brief All values can potentially be named. - bool hasName() const { return Name != nullptr && SubclassID != MDStringVal; } + bool hasName() const { return Name != nullptr; } ValueName *getValueName() const { return Name; } void setValueName(ValueName *VN) { Name = VN; }