diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2012-05-30 04:23:30 +0000 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2012-06-24 01:04:41 +0200 |
commit | ec19c4d14643a38890745d46535d3149fec2033f (patch) | |
tree | 85cd7c09265ebc8f2ec1780cf022961caaee7668 /target-ppc/Makefile.objs | |
parent | d15f74fb83fdaa80e8ef85001554d7fba0c1d0a3 (diff) |
ppc: Split MMU etc. helpers from op_helper.c
Move MMU, TLB, SLB and BAT ops to mmu_helper.c.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'target-ppc/Makefile.objs')
-rw-r--r-- | target-ppc/Makefile.objs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target-ppc/Makefile.objs b/target-ppc/Makefile.objs index 5d63400ce2..0f89c2c53a 100644 --- a/target-ppc/Makefile.objs +++ b/target-ppc/Makefile.objs @@ -5,5 +5,7 @@ obj-y += op_helper.o helper.o obj-y += excp_helper.o obj-y += fpu_helper.o obj-y += int_helper.o +obj-y += mmu_helper.o +$(obj)/mmu_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) $(obj)/op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) |