[PM] Sink a trailing comment to be a doxygen comment.
authorChandler Carruth <chandlerc@gmail.com>
Tue, 26 Nov 2013 00:37:27 +0000 (00:37 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Tue, 26 Nov 2013 00:37:27 +0000 (00:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195702 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/CallGraph.h

index bd5157aa5a4abe6a8d52c2bdef8f71e19a78f30a..386b39e6b105582986e73d0b3eee078cfec85030 100644 (file)
@@ -77,7 +77,9 @@ class CallGraph : public ModulePass {
   Module *M;
 
   typedef std::map<const Function *, CallGraphNode *> 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.