diff options
author | Richard Henderson <rth@twiddle.net> | 2014-09-13 09:45:32 -0700 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2014-09-25 18:54:22 +0100 |
commit | 458dd766565dad8cbd01861bdb337b0d129b185e (patch) | |
tree | f65ee6136f759d1f79d998f98a68f39d0ee3b632 /cpu-exec.c | |
parent | e9854c39452b293f883c2e9e1d30c9930b5a2c49 (diff) |
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.c | 8 |
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, |