From: Anton Johansson Date: Mon, 27 Feb 2023 13:52:02 +0000 (+0100) Subject: include/exec: Remove `tb_pc()` X-Git-Tag: qemu-xen-4.18.0-rc5~301^2~31 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=640be074fa1cadf4b1447c122efaaa2987fa774a;p=qemu-xen.git include/exec: Remove `tb_pc()` Signed-off-by: Anton Johansson Reviewed-by: Philippe Mathieu-Daudé Message-Id: <20230227135202.9710-28-anjo@rev.ng> Signed-off-by: Richard Henderson --- diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h index 6af001bfde..e09254333d 100644 --- a/include/exec/exec-all.h +++ b/include/exec/exec-all.h @@ -619,13 +619,6 @@ static inline uint32_t tb_cflags(const TranslationBlock *tb) return qatomic_read(&tb->cflags); } -/* Hide the read to avoid ifdefs for CF_PCREL. */ -static inline target_ulong tb_pc(const TranslationBlock *tb) -{ - assert(!(tb_cflags(tb) & CF_PCREL)); - return tb->pc; -} - static inline tb_page_addr_t tb_page_addr0(const TranslationBlock *tb) { #ifdef CONFIG_USER_ONLY