summaryrefslogtreecommitdiff
path: root/accel/tcg/Makefile.objs
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2017-07-04 15:57:28 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2017-07-04 16:00:43 +0200
commit290dae4678df9f271dbde5cc5cc7648aff136493 (patch)
tree4b29ad5be67344cae76274fa922dbd2e9d94c402 /accel/tcg/Makefile.objs
parenta0be0c585f5dcc4d50a37f6a20d3d625c5ef3a2c (diff)
downloadqemu-290dae4678df9f271dbde5cc5cc7648aff136493.tar.gz
cpu: move interrupt handling out of translate-common.c
translate-common.c will not be available anymore with --disable-tcg, so we cannot leave cpu_interrupt_handler there. Move the TCG-specific handler to accel/tcg/tcg-all.c, and adopt KVM's handler as the default one, since it works just as well for Xen and qtest. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'accel/tcg/Makefile.objs')
-rw-r--r--accel/tcg/Makefile.objs2
1 files changed, 1 insertions, 1 deletions
diff --git a/accel/tcg/Makefile.objs b/accel/tcg/Makefile.objs
index f173cd5397..70cd474c01 100644
--- a/accel/tcg/Makefile.objs
+++ b/accel/tcg/Makefile.objs
@@ -1,3 +1,3 @@
obj-$(CONFIG_SOFTMMU) += tcg-all.o
obj-$(CONFIG_SOFTMMU) += cputlb.o
-obj-y += cpu-exec.o cpu-exec-common.o translate-all.o translate-common.o
+obj-y += cpu-exec.o cpu-exec-common.o translate-all.o