From abaf91557fbcba7868068c13afc798e7898a3325 Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Wed, 16 May 2012 12:25:43 +0000 Subject: [PATCH] I noticed that named metadata doesn't provide a direct way of getting at the named metadata list, unlike all the other global objects (global variables, functions, aliases), so add that for consistency. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156915 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Module.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/llvm/Module.h b/include/llvm/Module.h index 570b1bc7b45..cb7c1dc36a6 100644 --- a/include/llvm/Module.h +++ b/include/llvm/Module.h @@ -498,6 +498,13 @@ public: static iplist Module::*getSublistAccess(GlobalAlias*) { return &Module::AliasList; } + /// Get the Module's list of named metadata (constant). + const NamedMDListType &getNamedMDList() const { return NamedMDList; } + /// Get the Module's list of named metadata. + NamedMDListType &getNamedMDList() { return NamedMDList; } + static ilist Module::*getSublistAccess(NamedMDNode*) { + return &Module::NamedMDList; + } /// Get the symbol table of global variable and function identifiers const ValueSymbolTable &getValueSymbolTable() const { return *ValSymTab; } /// Get the Module's symbol table of global variable and function identifiers. -- 2.34.1