aboutsummaryrefslogtreecommitdiffhomepage
path: root/ir.h
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2023-06-20 10:58:17 +0200
committerlemon <lsof@mailbox.org>2023-06-20 11:25:51 +0200
commit3b9071be52359388a4a1db6b48636f6c4934b9ad (patch)
treea65aed400b3767966f6963dd4cdd3f8cb1ff1b2f /ir.h
parent945d17aff2aa92dd1fbb0304d4ee7ab5ea6ce496 (diff)
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
Diffstat (limited to 'ir.h')
-rw-r--r--ir.h2
1 files changed, 1 insertions, 1 deletions
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];
};