diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-04-07 04:40:26 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-04-07 04:40:26 +0000 |
commit | 7614b5b475be69a652dcf0f6f0a88e72e75ae1f2 (patch) | |
tree | 707103939749dd39d648115798f86d77e7cd933c | |
parent | 232d44ed48ec3f97f29d6463bff8bc6fb1a1586b (diff) | |
download | bcm5719-llvm-7614b5b475be69a652dcf0f6f0a88e72e75ae1f2.tar.gz bcm5719-llvm-7614b5b475be69a652dcf0f6f0a88e72e75ae1f2.zip |
Fix comment.
llvm-svn: 100604
-rw-r--r-- | clang/include/clang/AST/Expr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/include/clang/AST/Expr.h b/clang/include/clang/AST/Expr.h index 2b172a726fc..c15bfac34eb 100644 --- a/clang/include/clang/AST/Expr.h +++ b/clang/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<Expr>(Val); } |