diff options
| author | 2022-08-20 06:35:05 +0200 | |
|---|---|---|
| committer | 2022-08-20 06:47:17 +0200 | |
| commit | df41a4512932f1312e4725d0409757a683b091ed (patch) | |
| tree | 5a87b358529fb2fe92eefa6d4f47e0ac78b4d131 /bootstrap/all.h | |
| parent | 19acdd751963e88b6e75693f947b1b1fd2912f11 (diff) | |
defer fix
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; } ; |