diff options
Diffstat (limited to 'include/clang/Frontend/PCHBitCodes.h')
-rw-r--r-- | include/clang/Frontend/PCHBitCodes.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/Frontend/PCHBitCodes.h b/include/clang/Frontend/PCHBitCodes.h index f5b023430a..fceafb096f 100644 --- a/include/clang/Frontend/PCHBitCodes.h +++ b/include/clang/Frontend/PCHBitCodes.h @@ -383,6 +383,8 @@ namespace clang { STMT_CASE, /// \brief A DefaultStmt record. STMT_DEFAULT, + /// \brief A LabelStmt record. + STMT_LABEL, /// \brief An IfStmt record. STMT_IF, /// \brief A SwitchStmt record. @@ -393,6 +395,8 @@ namespace clang { STMT_DO, /// \brief A ForStmt record. STMT_FOR, + /// \brief A GotoStmt record. + STMT_GOTO, /// \brief A ContinueStmt record. STMT_CONTINUE, /// \brief A BreakStmt record. |