summaryrefslogtreecommitdiff
path: root/target-s390x/Makefile.objs
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2012-09-02 07:33:31 +0000
committerAlexander Graf <agraf@suse.de>2012-09-10 13:38:32 +0200
commite72ca652aa08e3d07c59349f239ba596f27c97af (patch)
tree931e41eb72bafe37f7189740e89f33a25458da1b /target-s390x/Makefile.objs
parent71e470886fb6092504503a5fe41092ace71c096c (diff)
downloadqemu-e72ca652aa08e3d07c59349f239ba596f27c97af.tar.gz
target-s390x: split FPU ops
Move floating point instructions to fpu_helper.c. While exporting some condition code helpers, avoid duplicate identifier conflict with translate.c. Remove unused set_cc_nz_f64() in translate.c. Signed-off-by: Blue Swirl <blauwirbel@gmail.com> Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'target-s390x/Makefile.objs')
-rw-r--r--target-s390x/Makefile.objs2
1 files changed, 2 insertions, 0 deletions
diff --git a/target-s390x/Makefile.objs b/target-s390x/Makefile.objs
index 80be3bbdb2..23b3bd9989 100644
--- a/target-s390x/Makefile.objs
+++ b/target-s390x/Makefile.objs
@@ -1,5 +1,7 @@
obj-y += translate.o op_helper.o helper.o cpu.o interrupt.o
+obj-y += fpu_helper.o
obj-$(CONFIG_SOFTMMU) += machine.o
obj-$(CONFIG_KVM) += kvm.o
$(obj)/op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
+$(obj)/fpu_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS)