aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-04-05 20:08:55 -0700
committerMichael Forney <mforney@mforney.org>2019-04-06 12:01:51 -0700
commit6f65c9e5564d89e0512a80ae0301330c31dbc6e5 (patch)
tree594fe42cf3fe11469becbe7c6e1ffe3e76a334e0
parent4c697d5087e5f5aaa01bada73396058eed88525d (diff)
downloadcproc-6f65c9e5564d89e0512a80ae0301330c31dbc6e5.tar.xz
Simplify a couple loops
-rw-r--r--decl.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/decl.c b/decl.c
index 9b56262..d6514a9 100644
--- a/decl.c
+++ b/decl.c
@@ -486,9 +486,7 @@ declaratortypes(struct scope *s, struct list *result, char **name, bool allowabs
*p = mkparam(tok.lit, NULL, QUALNONE);
p = &(*p)->next;
next();
- if (!consume(TCOMMA))
- break;
- } while (tok.kind == TIDENT);
+ } while (consume(TCOMMA) && tok.kind == TIDENT);
break;
}
/* fallthrough */
@@ -517,12 +515,8 @@ declaratortypes(struct scope *s, struct list *result, char **name, bool allowabs
case TLBRACK: /* array declarator */
next();
tq = QUALNONE;
- for (;;) {
- if (tok.kind == TSTATIC)
- next(); /* ignore */
- else if (!typequal(&tq))
- break;
- }
+ while (consume(TSTATIC) || typequal(&tq))
+ ;
if (tok.kind == TMUL)
error(&tok.loc, "VLAs are not yet supported");
if (tok.kind == TRBRACK) {