summary refs log tree commit diff
path: root/amd64
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin@c9x.me>2022-09-02 12:08:52 +0200
committerQuentin Carbonneaux <quentin@c9x.me>2022-10-03 10:41:30 +0200
commit70f297bab7ae5d7291040b0305281a5fa8289f80 (patch)
tree85305108a954e2c21f16c3e529cf5fab7a189a77 /amd64
parent79f3673d205617ac567f0566ebf8f450932d9976 (diff)
downloadroux-70f297bab7ae5d7291040b0305281a5fa8289f80.tar.gz
fix case of Pool constants
Diffstat (limited to 'amd64')
-rw-r--r--amd64/sysv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/amd64/sysv.c b/amd64/sysv.c
index e9f3d6b..f4e0416 100644
--- a/amd64/sysv.c
+++ b/amd64/sysv.c
@@ -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;