Stmt tag for compiled-to-C++; Inliner knows to avoid it

This commit is contained in:
Vern Paxson 2021-04-19 16:12:15 -07:00
parent 8d10fd32d0
commit 5efba9e115
3 changed files with 6 additions and 3 deletions

View file

@ -20,6 +20,7 @@ enum StmtTag {
STMT_WHILE,
STMT_CATCH_RETURN, // for reduced InlineExpr's
STMT_CHECK_ANY_LEN, // internal reduced statement
STMT_CPP, // compiled C++
STMT_NULL
#define NUM_STMTS (int(STMT_NULL) + 1)
};