mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
Push StringRefs through the metadata interface.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145934 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -425,12 +425,12 @@ StringRef NamedMDNode::getName() const {
|
||||
// Instruction Metadata method implementations.
|
||||
//
|
||||
|
||||
void Instruction::setMetadata(const char *Kind, MDNode *Node) {
|
||||
void Instruction::setMetadata(StringRef Kind, MDNode *Node) {
|
||||
if (Node == 0 && !hasMetadata()) return;
|
||||
setMetadata(getContext().getMDKindID(Kind), Node);
|
||||
}
|
||||
|
||||
MDNode *Instruction::getMetadataImpl(const char *Kind) const {
|
||||
MDNode *Instruction::getMetadataImpl(StringRef Kind) const {
|
||||
return getMetadataImpl(getContext().getMDKindID(Kind));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user