From 70f297bab7ae5d7291040b0305281a5fa8289f80 Mon Sep 17 00:00:00 2001 From: Quentin Carbonneaux Date: Fri, 2 Sep 2022 12:08:52 +0200 Subject: fix case of Pool constants --- arm64/abi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arm64/abi.c') diff --git a/arm64/abi.c b/arm64/abi.c index 945a676..d9c3fe1 100644 --- a/arm64/abi.c +++ b/arm64/abi.c @@ -659,8 +659,8 @@ arm64_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; -- cgit 1.4.1