From 49fe6c914c5f356a97619046384d7ceb2cb5187e Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Thu, 30 Jul 2009 23:59:04 +0000 Subject: Add getOrInsertNamedMetadata(). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77646 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Module.h | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'include/llvm/Module.h') diff --git a/include/llvm/Module.h b/include/llvm/Module.h index 0f8722dc..8b0c104 100644 --- a/include/llvm/Module.h +++ b/include/llvm/Module.h @@ -303,11 +303,16 @@ public: /// @name Named Metadata Accessors /// @{ public: - /// getNamedMetadata - Return the first named MDNode in the module with the - /// specified name. This method returns null if a MDNode with the specified - /// name is not found. + /// getNamedMetadata - Return the first NamedMDNode in the module with the + /// specified name. This method returns null if a NamedMDNode with the + /// specified name is not found. NamedMDNode *getNamedMetadata(const StringRef &Name) const; + /// getOrInsertNamedMetadata - Return the first named MDNode in the module + /// with the specified name. This method returns a new NamedMDNode if a + /// NamedMDNode with the specified name is not found. + NamedMDNode *getOrInsertNamedMetadata(const StringRef &Name); + /// @} /// @name Type Accessors /// @{ -- cgit v1.1