From: Chandler Carruth Date: Tue, 26 Nov 2013 00:37:27 +0000 (+0000) Subject: [PM] Sink a trailing comment to be a doxygen comment. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=8037485f166c333d82a1174d70121af0f488bce5;hp=0c9fcd2be82a9bb547f9b8a9e3be30e5b79ca255 [PM] Sink a trailing comment to be a doxygen comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195702 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/CallGraph.h b/include/llvm/Analysis/CallGraph.h index bd5157aa5a4..386b39e6b10 100644 --- a/include/llvm/Analysis/CallGraph.h +++ b/include/llvm/Analysis/CallGraph.h @@ -77,7 +77,9 @@ class CallGraph : public ModulePass { Module *M; typedef std::map FunctionMapTy; - FunctionMapTy FunctionMap; // Map from a function to its node + + /// \brief A map from \c Function* to \c CallGraphNode*. + FunctionMapTy FunctionMap; /// \brief Root is root of the call graph, or the external node if a 'main' /// function couldn't be found.