diff options
author | Richard Henderson <rth@twiddle.net> | 2014-09-13 09:45:18 -0700 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2014-09-25 18:54:21 +0100 |
commit | 37f3616aa8644e539f9f7178c026d47a458bf2ab (patch) | |
tree | 6412617d4d51d3343b89693619a249b2ef52d005 /cpu-exec.c | |
parent | 9585db68c78b538e4d835372da3c5675fe0608da (diff) |
target-xtensa: Use cpu_exec_interrupt qom hook
Cc: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Reviewed-by: Max Filippov <jcmvbkbc@gmail.com>
Message-id: 1410626734-3804-8-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 | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cpu-exec.c b/cpu-exec.c index fe313b48f3..304867d4bd 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -669,12 +669,6 @@ int cpu_exec(CPUArchState *env) cc->do_interrupt(cpu); next_tb = 0; } -#elif defined(TARGET_XTENSA) - if (interrupt_request & CPU_INTERRUPT_HARD) { - cpu->exception_index = EXC_IRQ; - cc->do_interrupt(cpu); - next_tb = 0; - } #endif /* The target hook has 3 exit conditions: False when the interrupt isn't processed, |