diff options
-rw-r--r-- | miscutils/bc.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/miscutils/bc.c b/miscutils/bc.c index ccc7cb4d1..58734cf9c 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c | |||
@@ -525,6 +525,10 @@ static const struct BcLexKeyword bc_lex_kws[20] = { | |||
525 | BC_LEX_KW_ENTRY("while" , 1), // 19 | 525 | BC_LEX_KW_ENTRY("while" , 1), // 19 |
526 | }; | 526 | }; |
527 | #undef BC_LEX_KW_ENTRY | 527 | #undef BC_LEX_KW_ENTRY |
528 | #define STRING_if (bc_lex_kws[8].name8) | ||
529 | #define STRING_else (bc_lex_kws[4].name8) | ||
530 | #define STRING_while (bc_lex_kws[19].name8) | ||
531 | #define STRING_for (bc_lex_kws[5].name8) | ||
528 | enum { | 532 | enum { |
529 | POSIX_KWORD_MASK = 0 | 533 | POSIX_KWORD_MASK = 0 |
530 | | (1 << 0) // 0 | 534 | | (1 << 0) // 0 |
@@ -4053,7 +4057,7 @@ static BC_STATUS zbc_parse_if(BcParse *p) | |||
4053 | bc_parse_pushJUMP_ZERO(p, ip_idx); | 4057 | bc_parse_pushJUMP_ZERO(p, ip_idx); |
4054 | bc_vec_push(&p->func->labels, &ip_idx); | 4058 | bc_vec_push(&p->func->labels, &ip_idx); |
4055 | 4059 | ||
4056 | s = zbc_parse_stmt_allow_NLINE_before(p, "if"); | 4060 | s = zbc_parse_stmt_allow_NLINE_before(p, STRING_if); |
4057 | if (s) RETURN_STATUS(s); | 4061 | if (s) RETURN_STATUS(s); |
4058 | 4062 | ||
4059 | dbg_lex("%s:%d in if after stmt: p->l.t.t:%d", __func__, __LINE__, p->l.t.t); | 4063 | dbg_lex("%s:%d in if after stmt: p->l.t.t:%d", __func__, __LINE__, p->l.t.t); |
@@ -4071,7 +4075,7 @@ static BC_STATUS zbc_parse_if(BcParse *p) | |||
4071 | bc_vec_push(&p->func->labels, &ip2_idx); | 4075 | bc_vec_push(&p->func->labels, &ip2_idx); |
4072 | ip_idx = ip2_idx; | 4076 | ip_idx = ip2_idx; |
4073 | 4077 | ||
4074 | s = zbc_parse_stmt_allow_NLINE_before(p, "else"); | 4078 | s = zbc_parse_stmt_allow_NLINE_before(p, STRING_else); |
4075 | if (s) RETURN_STATUS(s); | 4079 | if (s) RETURN_STATUS(s); |
4076 | } | 4080 | } |
4077 | 4081 | ||
@@ -4110,7 +4114,7 @@ static BC_STATUS zbc_parse_while(BcParse *p) | |||
4110 | 4114 | ||
4111 | bc_parse_pushJUMP_ZERO(p, ip_idx); | 4115 | bc_parse_pushJUMP_ZERO(p, ip_idx); |
4112 | 4116 | ||
4113 | s = zbc_parse_stmt_allow_NLINE_before(p, "while"); | 4117 | s = zbc_parse_stmt_allow_NLINE_before(p, STRING_while); |
4114 | if (s) RETURN_STATUS(s); | 4118 | if (s) RETURN_STATUS(s); |
4115 | 4119 | ||
4116 | dbg_lex("%s:%d BC_INST_JUMP to %d", __func__, __LINE__, cond_idx); | 4120 | dbg_lex("%s:%d BC_INST_JUMP to %d", __func__, __LINE__, cond_idx); |
@@ -4186,7 +4190,7 @@ static BC_STATUS zbc_parse_for(BcParse *p) | |||
4186 | bc_vec_push(&p->exits, &exit_idx); | 4190 | bc_vec_push(&p->exits, &exit_idx); |
4187 | bc_vec_push(&p->func->labels, &exit_idx); | 4191 | bc_vec_push(&p->func->labels, &exit_idx); |
4188 | 4192 | ||
4189 | s = zbc_parse_stmt_allow_NLINE_before(p, "for"); | 4193 | s = zbc_parse_stmt_allow_NLINE_before(p, STRING_for); |
4190 | if (s) RETURN_STATUS(s); | 4194 | if (s) RETURN_STATUS(s); |
4191 | 4195 | ||
4192 | dbg_lex("%s:%d BC_INST_JUMP to %d", __func__, __LINE__, update_idx); | 4196 | dbg_lex("%s:%d BC_INST_JUMP to %d", __func__, __LINE__, update_idx); |