fix case of Pool constants

This commit is contained in:
Quentin Carbonneaux 2022-09-02 12:08:52 +02:00
parent 79f3673d20
commit 70f297bab7
10 changed files with 27 additions and 27 deletions

View file

@ -608,8 +608,8 @@ selvaarg(Fn *fn, Blk *b, Ins *i)
*b0->phi = (Phi){
.cls = Kl, .to = loc,
.narg = 2,
.blk = vnew(2, sizeof b0->phi->blk[0], Pfn),
.arg = vnew(2, sizeof b0->phi->arg[0], Pfn),
.blk = vnew(2, sizeof b0->phi->blk[0], PFn),
.arg = vnew(2, sizeof b0->phi->arg[0], PFn),
};
b0->phi->blk[0] = bstk;
b0->phi->blk[1] = breg;