From 10ebe39f2f7550cb8ace74de88fefa68eb980295 Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Sun, 18 Jan 2026 16:51:54 -0700 Subject: [PATCH] tcg: Bring back tcg_out_op for aarch64 --- tcg/aarch64/tcg-target.c.inc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tcg/aarch64/tcg-target.c.inc b/tcg/aarch64/tcg-target.c.inc index caf79c742d..7d302d7948 100644 --- a/tcg/aarch64/tcg-target.c.inc +++ b/tcg/aarch64/tcg-target.c.inc @@ -2893,6 +2893,13 @@ static const TCGOutOpStore outop_st = { .out_r = tcg_out_st, }; +static inline void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type, + const TCGArg args[TCG_MAX_OP_ARGS], + const int const_args[TCG_MAX_OP_ARGS]) +{ + g_assert_not_reached(); +} + static void tcg_out_vec_op(TCGContext *s, TCGOpcode opc, unsigned vecl, unsigned vece, const TCGArg args[TCG_MAX_OP_ARGS],