diff options
author | Blue Swirl | 2012-04-29 16:11:56 +0200 |
---|---|---|
committer | Blue Swirl | 2012-08-14 21:01:25 +0200 |
commit | 7923057bae23e44f75a52ce3735c3bd5d55872c1 (patch) | |
tree | df72247930e53b1ca3cf37f1f062d1cf30a64002 /target-i386/Makefile.objs | |
parent | x86: avoid AREG0 for condition code helpers (diff) | |
download | qemu-7923057bae23e44f75a52ce3735c3bd5d55872c1.tar.gz qemu-7923057bae23e44f75a52ce3735c3bd5d55872c1.tar.xz qemu-7923057bae23e44f75a52ce3735c3bd5d55872c1.zip |
x86: avoid AREG0 for integer helpers
Add an explicit CPUX86State parameter instead of relying on AREG0.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-i386/Makefile.objs')
-rw-r--r-- | target-i386/Makefile.objs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/target-i386/Makefile.objs b/target-i386/Makefile.objs index 54a655651d..d39ec8e935 100644 --- a/target-i386/Makefile.objs +++ b/target-i386/Makefile.objs @@ -7,7 +7,6 @@ obj-$(CONFIG_NO_KVM) += kvm-stub.o obj-$(CONFIG_LINUX_USER) += ioport-user.o obj-$(CONFIG_BSD_USER) += ioport-user.o -$(obj)/int_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) $(obj)/svm_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) $(obj)/smm_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) $(obj)/misc_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) |