move return type information into Fn

This commit is contained in:
Quentin Carbonneaux 2015-09-25 11:33:50 -04:00
parent 2d5302df71
commit 4dccbf22f3
2 changed files with 13 additions and 15 deletions

View file

@ -204,7 +204,6 @@ struct Blk {
struct {
short type;
Ref arg;
int rettyn;
} jmp;
Blk *s1;
Blk *s2;
@ -246,6 +245,7 @@ struct Fn {
int ntmp;
int ncon;
int nblk;
int retty;
Blk **rpo;
ulong reg;
int svec[NAlign];