From 79874c83bf76a5b3efd3d558933b90d9b53b829e Mon Sep 17 00:00:00 2001 From: lemon Date: Sat, 21 Mar 2026 22:20:34 +0100 Subject: IR: add 3rd operand to Instr The motivation is for aarch64 msub/madd instrs, for isel to produce. But it should be useful for other things too. --- src/ir_op.def | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/ir_op.def') diff --git a/src/ir_op.def b/src/ir_op.def index 4a18b4b..4e775a1 100644 --- a/src/ir_op.def +++ b/src/ir_op.def @@ -60,12 +60,12 @@ _(loadu32, 1) _(loadi64, 1) _(loadf32, 1) _(loadf64, 1) -_(storei8, 2) -_(storei16, 2) -_(storei32, 2) -_(storei64, 2) -_(storef32, 2) -_(storef64, 2) +_(storei8, 2) +_(storei16, 2) +_(storei32, 2) +_(storei64, 2) +_(storef32, 2) +_(storef64, 2) _(param, 2) _(arg, 2) _(call, 2) -- cgit v1.2.3