aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2021-10-21 15:04:27 -0700
committerMichael Forney <mforney@mforney.org>2021-10-21 15:04:27 -0700
commit4b599dd1baa182734141d1739c91256bc44edf85 (patch)
treedabdf45e4123c8aa72426ec55dd84ede4cbe5206
parent8fac505536f69b3f3864dcd09979bfc9cc3ce471 (diff)
Remove obsolete comment
-rw-r--r--stmt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stmt.c b/stmt.c
index a997290..332afd6 100644
--- a/stmt.c
+++ b/stmt.c
@@ -209,7 +209,7 @@ stmt(struct func *f, struct scope *s)
expect(TRPAREN, "after expression");
v = funcexpr(f, e);
- funcjnz(f, v, t, label[0], label[2]); // XXX: compare to 0
+ funcjnz(f, v, t, label[0], label[2]);
funclabel(f, label[2]);
s = delscope(s);
expect(TSEMICOLON, "after 'do' statement");