diff options
author | Max Filippov | 2019-01-14 04:16:18 +0100 |
---|---|---|
committer | Max Filippov | 2019-01-14 08:34:57 +0100 |
commit | 7e5e5a630245727854ac17a973bff1f3b3d87743 (patch) | |
tree | 4ff312d52dea37d1488cd9322dc941cad057a1e0 /target/xtensa/Makefile.objs | |
parent | target/xtensa: extract windowed registers helpers (diff) | |
download | qemu-7e5e5a630245727854ac17a973bff1f3b3d87743.tar.gz qemu-7e5e5a630245727854ac17a973bff1f3b3d87743.tar.xz qemu-7e5e5a630245727854ac17a973bff1f3b3d87743.zip |
target/xtensa: extract MMU helpers
Move MMU-related helper functions from op_helper.c and helper.c to
mmu_helper.c. No functional changes.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'target/xtensa/Makefile.objs')
-rw-r--r-- | target/xtensa/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/xtensa/Makefile.objs b/target/xtensa/Makefile.objs index cc550c2ccb..b2c720b2df 100644 --- a/target/xtensa/Makefile.objs +++ b/target/xtensa/Makefile.objs @@ -9,4 +9,5 @@ obj-y += xtensa-isa.o obj-y += translate.o op_helper.o helper.o cpu.o obj-y += fpu_helper.o obj-y += gdbstub.o +obj-$(CONFIG_SOFTMMU) += mmu_helper.o obj-y += win_helper.o |