move return type information into Fn
This commit is contained in:
parent
2d5302df71
commit
4dccbf22f3
2 changed files with 13 additions and 15 deletions
|
@ -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];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue