From: Zhongxing Xu Date: Wed, 7 Apr 2010 04:40:26 +0000 (+0000) Subject: Fix comment. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=74626d6ef2e194fcc911e071556660ff331eb4a8;p=clang Fix comment. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@100604 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/Expr.h b/include/clang/AST/Expr.h index 2b172a726f..c15bfac34e 100644 --- a/include/clang/AST/Expr.h +++ b/include/clang/AST/Expr.h @@ -2364,7 +2364,7 @@ public: virtual child_iterator child_end(); }; -/// VAArgExpr, used for the builtin function __builtin_va_start. +/// VAArgExpr, used for the builtin function __builtin_va_arg. class VAArgExpr : public Expr { Stmt *Val; SourceLocation BuiltinLoc, RParenLoc; @@ -2375,7 +2375,7 @@ public: BuiltinLoc(BLoc), RParenLoc(RPLoc) { } - /// \brief Create an empty __builtin_va_start expression. + /// \brief Create an empty __builtin_va_arg expression. explicit VAArgExpr(EmptyShell Empty) : Expr(VAArgExprClass, Empty) { } const Expr *getSubExpr() const { return cast(Val); }