diff options
Diffstat (limited to 'bootstrap/all.h')
| -rw-r--r-- | bootstrap/all.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bootstrap/all.h b/bootstrap/all.h index 64ab9b1..cd51499 100644 --- a/bootstrap/all.h +++ b/bootstrap/all.h @@ -346,6 +346,7 @@ struct blockstmt { struct env env; slice_t(struct stmt) stmts; struct defer *defers; + int id; }; struct expr { @@ -496,7 +497,7 @@ struct stmt { }; struct defer { struct defer *next; - int age; + int blockid, age; struct expr ex; } ; |