From: Richard Henderson Date: Wed, 15 Mar 2023 17:43:11 +0000 (+0000) Subject: tcg: Drop plugin_gen_disable_mem_helpers from tcg_gen_exit_tb X-Git-Tag: v8.0.0-rc2~8^2~23 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=10588491c1fbf3458b88fb632c8292f7989516d0;p=thirdparty%2Fqemu.git tcg: Drop plugin_gen_disable_mem_helpers from tcg_gen_exit_tb Now that we call qemu_plugin_disable_mem_helpers in cpu_tb_exec, we don't need to do this in generated code as well. Signed-off-by: Richard Henderson Message-Id: <20230310195252.210956-3-richard.henderson@linaro.org> Signed-off-by: Alex Bennée Message-Id: <20230315174331.2959-13-alex.bennee@linaro.org> Reviewed-by: Emilio Cota --- diff --git a/tcg/tcg-op.c b/tcg/tcg-op.c index ddab20a6a69..3136cef81a8 100644 --- a/tcg/tcg-op.c +++ b/tcg/tcg-op.c @@ -2808,7 +2808,6 @@ void tcg_gen_exit_tb(const TranslationBlock *tb, unsigned idx) tcg_debug_assert(idx == TB_EXIT_REQUESTED); } - plugin_gen_disable_mem_helpers(); tcg_gen_op1i(INDEX_op_exit_tb, val); }