From 3b9071be52359388a4a1db6b48636f6c4934b9ad Mon Sep 17 00:00:00 2001 From: lemon Date: Tue, 20 Jun 2023 10:58:17 +0200 Subject: don't lower params and args to registers in abi0 it's better to do it later, currently in isel(), but perhaps in a pre-isel abi1 pass --- ir.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ir.h') diff --git a/ir.h b/ir.h index 72a0bd5..8208dea 100644 --- a/ir.h +++ b/ir.h @@ -54,7 +54,7 @@ struct call { union irtype ret; ushort narg; short vararg; /* first variadic arg or -1 */ - short *abiargregs; + struct abiarg *abiarg; struct abiarg abiret[2]; }; -- cgit v1.2.3