added stackheight message handling

This commit is contained in:
eck
1990-07-18 14:53:19 +00:00
parent adfec1c0ef
commit 4ef2c70ed3
28 changed files with 321 additions and 60 deletions

View File

@@ -110,6 +110,15 @@ struct varinfo *gen_test(from) iocc_t from; {
return(vp);
}
struct varinfo *gen_label(arg) int arg; {
register struct varinfo *vp;
NEW(vp,struct varinfo);
vp->vi_int[0] = INSLABDEF;
vp->vi_int[1] = arg;
return(vp);
}
struct varinfo *gen_preturn() {
register struct varinfo *vp;