Use a dynamic array for phi arguments

This commit is contained in:
Michael Forney 2020-04-19 16:31:52 -07:00 committed by Quentin Carbonneaux
parent 190263f1b6
commit 9de57265ce
6 changed files with 22 additions and 8 deletions

4
all.h
View file

@ -206,8 +206,8 @@ struct Ins {
struct Phi {
Ref to;
Ref arg[NPred];
Blk *blk[NPred];
Ref *arg;
Blk **blk;
uint narg;
int cls;
Phi *link;