diff options
author | Richard Henderson | 2021-05-17 22:50:04 +0200 |
---|---|---|
committer | David Gibson | 2021-05-19 02:30:29 +0200 |
commit | d736de8ff6f699bbd180077261a1af5b1735fd80 (patch) | |
tree | 65b4ba04946034e7337eef09506a8856a970fc22 /linux-user/ppc | |
parent | target/ppc: Introduce gen_icount_io_start (diff) | |
download | qemu-d736de8ff6f699bbd180077261a1af5b1735fd80.tar.gz qemu-d736de8ff6f699bbd180077261a1af5b1735fd80.tar.xz qemu-d736de8ff6f699bbd180077261a1af5b1735fd80.zip |
target/ppc: Replace POWERPC_EXCP_STOP with DISAS_EXIT_UPDATE
Remove the synthetic "exception" after no more uses.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Matheus Ferst <matheus.ferst@eldorado.org.br>
Message-Id: <20210517205025.3777947-3-matheus.ferst@eldorado.org.br>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'linux-user/ppc')
-rw-r--r-- | linux-user/ppc/cpu_loop.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/linux-user/ppc/cpu_loop.c b/linux-user/ppc/cpu_loop.c index 4a0f6c8dc2..fe526693d2 100644 --- a/linux-user/ppc/cpu_loop.c +++ b/linux-user/ppc/cpu_loop.c @@ -423,9 +423,6 @@ void cpu_loop(CPUPPCState *env) cpu_abort(cs, "Maintenance exception while in user mode. " "Aborting\n"); break; - case POWERPC_EXCP_STOP: /* stop translation */ - /* We did invalidate the instruction cache. Go on */ - break; case POWERPC_EXCP_BRANCH: /* branch instruction: */ /* We just stopped because of a branch. Go on */ break; |