diff options
author | Fabiano Rosas <farosas@suse.de> | 2023-02-17 17:11:33 -0300 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2023-02-27 13:27:04 +0000 |
commit | 671efad16a242b3fb5fb5111e9981d56887f7755 (patch) | |
tree | 79cdb858746cb7a12baa5af45561e9230b386ce1 /target/arm/tcg-stubs.c | |
parent | 2b77ad4de615542dd8f6b9886a816e744b0abffd (diff) | |
download | qemu-671efad16a242b3fb5fb5111e9981d56887f7755.zip qemu-671efad16a242b3fb5fb5111e9981d56887f7755.tar.gz qemu-671efad16a242b3fb5fb5111e9981d56887f7755.tar.bz2 |
target/arm: Move hflags code into the tcg directory
The hflags are used only for TCG code, so introduce a new file
hflags.c to keep that code.
Signed-off-by: Fabiano Rosas <farosas@suse.de>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/tcg-stubs.c')
-rw-r--r-- | target/arm/tcg-stubs.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/target/arm/tcg-stubs.c b/target/arm/tcg-stubs.c index 1a7ddb3..152b172 100644 --- a/target/arm/tcg-stubs.c +++ b/target/arm/tcg-stubs.c @@ -21,3 +21,7 @@ void raise_exception_ra(CPUARMState *env, uint32_t excp, uint32_t syndrome, { g_assert_not_reached(); } +/* Temporarily while cpu_get_tb_cpu_state() is still in common code */ +void assert_hflags_rebuild_correctly(CPUARMState *env) +{ +} |