diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2012-09-02 07:33:37 +0000 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2012-09-10 13:38:32 +0200 |
commit | 4fda26a7b0d6ffbb4055ab8b756cd94647f5fd22 (patch) | |
tree | d87134a5de3b4735752e7546f301e4140b1c9861 /target-s390x/Makefile.objs | |
parent | 449c0d70b6d5692bafd8b028e2a8a4e0ed7076fe (diff) |
target-s390x: avoid AREG0 for integer helpers
Make integer helpers take a parameter for CPUState instead
of relying on global env.
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.objs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/target-s390x/Makefile.objs b/target-s390x/Makefile.objs index 7d965e9ca9..7b2c5c1071 100644 --- a/target-s390x/Makefile.objs +++ b/target-s390x/Makefile.objs @@ -3,7 +3,6 @@ obj-y += int_helper.o fpu_helper.o cc_helper.o mem_helper.o misc_helper.o obj-$(CONFIG_SOFTMMU) += machine.o obj-$(CONFIG_KVM) += kvm.o -$(obj)/int_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) $(obj)/cc_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) $(obj)/mem_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) $(obj)/misc_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) |