diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-09-29 17:23:55 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-09-29 17:25:04 -0400 |
commit | 5e5d0a1e999a4d41614c9cf3db2b68ce031026f1 (patch) | |
tree | 451a62c9d38f658df4aa18b94c210bc79ff7420e /lisc/lisc.h | |
parent | fdbff25a61d47cc7ed9aed3ada0e0e414e1b559b (diff) | |
download | roux-5e5d0a1e999a4d41614c9cf3db2b68ce031026f1.tar.gz |
wip on a simpler slot handling
Diffstat (limited to 'lisc/lisc.h')
-rw-r--r-- | lisc/lisc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisc/lisc.h b/lisc/lisc.h index 127aa78..dcc3652 100644 --- a/lisc/lisc.h +++ b/lisc/lisc.h @@ -249,7 +249,7 @@ struct Fn { int retty; Blk **rpo; ulong reg; - int svec[NAlign]; + int stk0, stk1; char name[NString]; }; |