1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00

[PM] Sink a trailing comment to be a doxygen comment.

llvm-svn: 195702
This commit is contained in:
Chandler Carruth 2013-11-26 00:37:27 +00:00
parent 157fe29e22
commit bea2e16f78

View 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.