summaryrefslogtreecommitdiffstats
path: root/cpu-exec.c
diff options
context:
space:
mode:
authorRichard Henderson2014-09-13 18:45:32 +0200
committerPeter Maydell2014-09-25 19:54:22 +0200
commit458dd766565dad8cbd01861bdb337b0d129b185e (patch)
treef65ee6136f759d1f79d998f98a68f39d0ee3b632 /cpu-exec.c
parenttarget-lm32: Use cpu_exec_interrupt qom hook (diff)
downloadqemu-458dd766565dad8cbd01861bdb337b0d129b185e.tar.gz
qemu-458dd766565dad8cbd01861bdb337b0d129b185e.tar.xz
qemu-458dd766565dad8cbd01861bdb337b0d129b185e.zip
target-ppc: Use cpu_exec_interrupt qom hook
Cc: qemu-ppc@nongnu.org Signed-off-by: Richard Henderson <rth@twiddle.net> Message-id: 1410626734-3804-22-git-send-email-rth@twiddle.net Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'cpu-exec.c')
-rw-r--r--cpu-exec.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/cpu-exec.c b/cpu-exec.c
index abffbe5fc1..a423ac3fd9 100644
--- a/cpu-exec.c
+++ b/cpu-exec.c
@@ -490,14 +490,6 @@ int cpu_exec(CPUArchState *env)
#endif
}
}
-#elif defined(TARGET_PPC)
- if (interrupt_request & CPU_INTERRUPT_HARD) {
- ppc_hw_interrupt(env);
- if (env->pending_interrupts == 0) {
- cpu->interrupt_request &= ~CPU_INTERRUPT_HARD;
- }
- next_tb = 0;
- }
#endif
/* The target hook has 3 exit conditions:
False when the interrupt isn't processed,