summaryrefslogtreecommitdiff
path: root/target-i386/Makefile.objs
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2012-04-28 20:21:41 +0000
committerBlue Swirl <blauwirbel@gmail.com>2012-06-28 20:28:08 +0000
commitf299f4374affb6b838765841bb69a6e92566a9a8 (patch)
treebfd3528c1d2dd438e1a5c119043930a37b5ce610 /target-i386/Makefile.objs
parente01d9d31d9fd5824a1b0279a3631a2d66b5185ea (diff)
downloadqemu-f299f4374affb6b838765841bb69a6e92566a9a8.tar.gz
x86: split off FPU helpers
Move FPU and MMX/SSE helpers to fpu_helpers.c. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-i386/Makefile.objs')
-rw-r--r--target-i386/Makefile.objs3
1 files changed, 2 insertions, 1 deletions
diff --git a/target-i386/Makefile.objs b/target-i386/Makefile.objs
index c0feffee90..7c15de4e84 100644
--- a/target-i386/Makefile.objs
+++ b/target-i386/Makefile.objs
@@ -1,8 +1,9 @@
obj-y += translate.o op_helper.o helper.o cpu.o
-obj-y += excp_helper.o
+obj-y += excp_helper.o fpu_helper.o
obj-$(CONFIG_SOFTMMU) += machine.o arch_memory_mapping.o arch_dump.o
obj-$(CONFIG_KVM) += kvm.o hyperv.o
obj-$(CONFIG_LINUX_USER) += ioport-user.o
obj-$(CONFIG_BSD_USER) += ioport-user.o
$(obj)/op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
+$(obj)/fpu_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS)