reduction of Stmt subclasses - compiles but does not yet link

This commit is contained in:
Vern Paxson 2021-01-10 14:13:16 -08:00
parent 10e80dfcd3
commit 7a9694a2a4
4 changed files with 1059 additions and 66 deletions

View file

@ -18,6 +18,8 @@ enum StmtTag {
STMT_INIT,
STMT_FALLTHROUGH,
STMT_WHILE,
STMT_CATCH_RETURN, // for reduced InlineExpr's
STMT_CHECK_ANY_LEN, // internal reduced statement
STMT_NULL
#define NUM_STMTS (int(STMT_NULL) + 1)
};