aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-04-27 00:44:11 +0000
committerChris Lattner <sabre@nondot.org>2009-04-27 00:44:11 +0000
commit5947ca29a619725b8a9ea2e58a6c9df9e7db139b (patch)
tree42f70129b893ec2dcec89a1c5ee9a275d9c29c78
parent04ad9b278c27319e873e9f6ccf991f68f5fcc8a3 (diff)
fix a comment by starting stmts/exprs after types and decls.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70171 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Frontend/PCHBitCodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Frontend/PCHBitCodes.h b/include/clang/Frontend/PCHBitCodes.h
index a7d57560e6..5b1fc8d183 100644
--- a/include/clang/Frontend/PCHBitCodes.h
+++ b/include/clang/Frontend/PCHBitCodes.h
@@ -446,12 +446,12 @@ namespace clang {
/// These constants describe the records that describe statements
/// or expressions. These records can occur within either the type
/// or declaration blocks, so they begin with record values of
- /// 100. Each constant describes a record for a specific
+ /// 50. Each constant describes a record for a specific
/// statement or expression class in the AST.
enum StmtCode {
/// \brief A marker record that indicates that we are at the end
/// of an expression.
- STMT_STOP,
+ STMT_STOP = 50,
/// \brief A NULL expression.
STMT_NULL_PTR,
/// \brief A NullStmt record.