diff options
Diffstat (limited to 'bootstrap/dump.c')
| -rw-r--r-- | bootstrap/dump.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bootstrap/dump.c b/bootstrap/dump.c index 5d83503..12a5a2a 100644 --- a/bootstrap/dump.c +++ b/bootstrap/dump.c @@ -323,6 +323,7 @@ dumpstmt(const struct stmt *stmt, int ws) { break; case Sfor: epri("%wfor \n", ws); + /* if (stmt->loop.ini) dumpstmt(stmt->loop.ini, ws + 1); epri("%w; %e; ", ws + 1, &stmt->loop.test); @@ -330,6 +331,7 @@ dumpstmt(const struct stmt *stmt, int ws) { epri("%e", stmt->loop.next); epri("\n"); dumpblock(&stmt->loop.body, ws + 1); + */ break; case Siswitch: epri("%wswitch %e {\n", ws, &stmt->iswitch.test); |