From 3872d0084c4f479020ce01b4db5d1bd414c57fb8 Mon Sep 17 00:00:00 2001 From: "Duncan P. N. Exon Smith" Date: Sat, 1 Nov 2014 00:10:31 +0000 Subject: IR: MDNode => Value: Instruction::getMetadata() Change `Instruction::getMetadata()` to return `Value` as part of PR21433. Update most callers to use `Instruction::getMDNode()`, which wraps the result in a `cast_or_null`. llvm-svn: 221024 --- llvm/lib/IR/Metadata.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'llvm/lib/IR/Metadata.cpp') diff --git a/llvm/lib/IR/Metadata.cpp b/llvm/lib/IR/Metadata.cpp index 60cd2fc9061..6c335c78729 100644 --- a/llvm/lib/IR/Metadata.cpp +++ b/llvm/lib/IR/Metadata.cpp @@ -605,16 +605,16 @@ void Instruction::setMetadata(StringRef Kind, Value *MD) { setMetadata(getContext().getMDKindID(Kind), MD); } -MDNode *Instruction::getMetadataImpl(StringRef Kind) const { +Value *Instruction::getMetadataImpl(StringRef Kind) const { return getMetadataImpl(getContext().getMDKindID(Kind)); } MDNode *Instruction::getMDNodeImpl(unsigned KindID) const { - return getMetadataImpl(KindID); + return cast_or_null(getMetadataImpl(KindID)); } MDNode *Instruction::getMDNodeImpl(StringRef Kind) const { - return getMetadataImpl(Kind); + return cast_or_null(getMetadataImpl(Kind)); } void Instruction::dropUnknownMetadata(ArrayRef KnownIDs) { @@ -729,7 +729,7 @@ void Instruction::setAAMetadata(const AAMDNodes &N) { setMetadata(LLVMContext::MD_noalias, N.NoAlias); } -MDNode *Instruction::getMetadataImpl(unsigned KindID) const { +Value *Instruction::getMetadataImpl(unsigned KindID) const { // Handle 'dbg' as a special case since it is not stored in the hash table. if (KindID == LLVMContext::MD_dbg) return DbgLoc.getAsMDNode(getContext()); -- cgit v1.2.3