diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2021-04-30 14:27:31 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2021-05-10 13:24:09 +0100 |
commit | 9a5071abbce614c52d0e72bdbd688cd4e2a9ee46 (patch) | |
tree | 4c69898d76195bbd6d000386fabf16623c90b30f /target/arm/translate.c | |
parent | 5ce389f2e76e8aa318ec734cc12c0f0e657a9e0e (diff) | |
download | qemu-9a5071abbce614c52d0e72bdbd688cd4e2a9ee46.zip qemu-9a5071abbce614c52d0e72bdbd688cd4e2a9ee46.tar.gz qemu-9a5071abbce614c52d0e72bdbd688cd4e2a9ee46.tar.bz2 |
target/arm: Split m-nocp trans functions into their own file
Currently the trans functions for m-nocp.decode all live in
translate-vfp.inc.c; move them out into their own translation unit,
translate-m-nocp.c.
The trans_* functions here are pure code motion with no changes.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20210430132740.10391-5-peter.maydell@linaro.org
Diffstat (limited to 'target/arm/translate.c')
-rw-r--r-- | target/arm/translate.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/target/arm/translate.c b/target/arm/translate.c index 3c1d522..46f6dfc 100644 --- a/target/arm/translate.c +++ b/target/arm/translate.c @@ -1273,7 +1273,6 @@ static TCGv_ptr vfp_reg_ptr(bool dp, int reg) #define ARM_CP_RW_BIT (1 << 20) /* Include the VFP and Neon decoders */ -#include "decode-m-nocp.c.inc" #include "translate-vfp.c.inc" #include "translate-neon.c.inc" |