diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2012-05-30 04:23:26 +0000 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2012-06-24 01:04:41 +0200 |
commit | bd23cd45ea533580da410eed9c31692abf7584e6 (patch) | |
tree | a004c2f8c1184f6ba15204bdc0d59f145f49f8fc /target-ppc/Makefile.objs | |
parent | c79c73f6a9e989f9e0ae4323dcc2fad30897acce (diff) | |
download | qemu-bd23cd45ea533580da410eed9c31692abf7584e6.tar.gz qemu-bd23cd45ea533580da410eed9c31692abf7584e6.tar.bz2 qemu-bd23cd45ea533580da410eed9c31692abf7584e6.zip |
ppc: Split FPU and SPE ops
Move FPU and SPE helpers from op_helper.c to fpu_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 a02b7bccde..dde916c685 100644 --- a/target-ppc/Makefile.objs +++ b/target-ppc/Makefile.objs @@ -3,5 +3,7 @@ obj-$(CONFIG_SOFTMMU) += machine.o obj-$(CONFIG_KVM) += kvm.o kvm_ppc.o obj-y += op_helper.o helper.o obj-y += excp_helper.o +obj-y += fpu_helper.o +$(obj)/fpu_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) $(obj)/op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) |