diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2022-10-24 21:17:39 +1000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2022-10-26 11:11:28 +1000 |
commit | 04f105758b0089f73ee47260671580cde35f96cc (patch) | |
tree | f7385bd29a75ad8c99e9c760bd302aaf30d249b2 /include/exec | |
parent | 044dcfc5aab2f2679148c9eca41441dd6cf276a0 (diff) | |
download | qemu-04f105758b0089f73ee47260671580cde35f96cc.zip qemu-04f105758b0089f73ee47260671580cde35f96cc.tar.gz qemu-04f105758b0089f73ee47260671580cde35f96cc.tar.bz2 |
accel/tcg: Remove restore_state_to_opc function
All targets have been updated. Use the tcg_ops target hook
exclusively, which allows the compat code to be removed.
Reviewed-by: Claudio Fontana <cfontana@suse.de>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/exec')
-rw-r--r-- | include/exec/exec-all.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h index 3b5e842..e948992 100644 --- a/include/exec/exec-all.h +++ b/include/exec/exec-all.h @@ -39,9 +39,6 @@ typedef ram_addr_t tb_page_addr_t; #define TB_PAGE_ADDR_FMT RAM_ADDR_FMT #endif -void restore_state_to_opc(CPUArchState *env, TranslationBlock *tb, - target_ulong *data) __attribute__((weak)); - /** * cpu_restore_state: * @cpu: the vCPU state is to be restore to |