[cfe-commits] r100604 - /cfe/trunk/include/clang/AST/Expr.h
Zhongxing Xu
xuzhongxing at gmail.com
Tue Apr 6 21:40:26 PDT 2010
Author: zhongxingxu
Date: Tue Apr 6 23:40:26 2010
New Revision: 100604
URL: http://llvm.org/viewvc/llvm-project?rev=100604&view=rev
Log:
Fix comment.
Modified:
cfe/trunk/include/clang/AST/Expr.h
Modified: cfe/trunk/include/clang/AST/Expr.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Expr.h?rev=100604&r1=100603&r2=100604&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Expr.h (original)
+++ cfe/trunk/include/clang/AST/Expr.h Tue Apr 6 23:40:26 2010
@@ -2364,7 +2364,7 @@
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 @@
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); }
More information about the cfe-commits
mailing list