diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2021-07-17 15:18:40 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2021-07-21 07:47:04 -1000 |
commit | 043e35d98c0865a7396783b57b74359cfab85c40 (patch) | |
tree | 87ba9d7c4f5915391abb2970f556e5b3009a1048 /include/exec | |
parent | 78ff82bb1b67c0d79113688e4b3427fc99cab9d4 (diff) | |
download | qemu-043e35d98c0865a7396783b57b74359cfab85c40.zip qemu-043e35d98c0865a7396783b57b74359cfab85c40.tar.gz qemu-043e35d98c0865a7396783b57b74359cfab85c40.tar.bz2 |
accel/tcg: Move curr_cflags into cpu-exec.c
We will shortly have more than a simple member read here,
with stuff not necessarily exposed to exec/exec-all.h.
Tested-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20210717221851.2124573-3-richard.henderson@linaro.org>
Diffstat (limited to 'include/exec')
-rw-r--r-- | include/exec/exec-all.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h index dfe82ed..ae7603c 100644 --- a/include/exec/exec-all.h +++ b/include/exec/exec-all.h @@ -565,10 +565,7 @@ static inline uint32_t tb_cflags(const TranslationBlock *tb) } /* current cflags for hashing/comparison */ -static inline uint32_t curr_cflags(CPUState *cpu) -{ - return cpu->tcg_cflags; -} +uint32_t curr_cflags(CPUState *cpu); /* TranslationBlock invalidate API */ #if defined(CONFIG_USER_ONLY) |