From: Duncan Sands Date: Wed, 16 May 2012 12:25:43 +0000 (+0000) Subject: I noticed that named metadata doesn't provide a direct way of getting at the X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=abaf91557fbcba7868068c13afc798e7898a3325;p=oota-llvm.git 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 --- 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.