diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2019-01-13 19:16:18 -0800 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2019-01-13 23:34:57 -0800 |
commit | 7e5e5a630245727854ac17a973bff1f3b3d87743 (patch) | |
tree | 4ff312d52dea37d1488cd9322dc941cad057a1e0 /target/xtensa/Makefile.objs | |
parent | c9ed50e82d640f164b06c9170382622a9adf9906 (diff) |
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 |