diff options
Diffstat (limited to 'lib/AST/CommentDumper.cpp')
-rw-r--r-- | lib/AST/CommentDumper.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/AST/CommentDumper.cpp b/lib/AST/CommentDumper.cpp index 027e3a9800..7a4ca0c12a 100644 --- a/lib/AST/CommentDumper.cpp +++ b/lib/AST/CommentDumper.cpp @@ -140,6 +140,8 @@ void CommentDumper::visitBlockCommandComment(const BlockCommandComment *C) { dumpComment(C); OS << " Name=\"" << C->getCommandName() << "\""; + for (unsigned i = 0, e = C->getNumArgs(); i != e; ++i) + OS << " Arg[" << i << "]=\"" << C->getArgText(i) << "\""; } void CommentDumper::visitParamCommandComment(const ParamCommandComment *C) { |