aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Frontend/PCHBitCodes.h
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-04-17 00:16:09 +0000
committerDouglas Gregor <dgregor@apple.com>2009-04-17 00:16:09 +0000
commitd921cf976b4769af8d06d6763a2547dadf7940ab (patch)
tree73a54c9fc5fcc4db00a46fa2d8162fc007dffbb1 /include/clang/Frontend/PCHBitCodes.h
parent397195bf3077fb42789b326f69f7d417227a0588 (diff)
PCH support for while and continue statements
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69332 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/PCHBitCodes.h')
-rw-r--r--include/clang/Frontend/PCHBitCodes.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/Frontend/PCHBitCodes.h b/include/clang/Frontend/PCHBitCodes.h
index 98d27a0916..d95ba85b82 100644
--- a/include/clang/Frontend/PCHBitCodes.h
+++ b/include/clang/Frontend/PCHBitCodes.h
@@ -387,6 +387,10 @@ namespace clang {
STMT_IF,
/// \brief A SwitchStmt record.
STMT_SWITCH,
+ /// \brief A WhileStmt record.
+ STMT_WHILE,
+ /// \brief A ContinueStmt record.
+ STMT_CONTINUE,
/// \brief A BreakStmt record.
STMT_BREAK,
/// \brief A PredefinedExpr record.