From c85829617bae7f0520c92c5819a5ca8ad520b4f1 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 20 Aug 2010 18:22:57 +0000 Subject: [PATCH] Reword NamedMDNode's comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111663 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Metadata.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/llvm/Metadata.h b/include/llvm/Metadata.h index b5901ce7ed6..ef9646e9774 100644 --- a/include/llvm/Metadata.h +++ b/include/llvm/Metadata.h @@ -175,8 +175,9 @@ private: }; //===----------------------------------------------------------------------===// -/// NamedMDNode - a tuple of MDNodes. -/// NamedMDNode is always named. All NamedMDNode operand has a type of metadata. +/// NamedMDNode - a tuple of MDNodes. Despite its name, a NamedMDNode isn't +/// itself an MDNode. NamedMDNodes belong to modules, have names, and contain +/// lists of MDNodes. class NamedMDNode : public ilist_node { friend class SymbolTableListTraits; friend struct ilist_traits;