diff options
author | Fabiano Rosas <farosas@linux.ibm.com> | 2022-02-09 09:08:55 +0100 |
---|---|---|
committer | Cédric Le Goater <clg@kaod.org> | 2022-02-09 09:08:55 +0100 |
commit | 25fe5f7534ee9dce6c2f038b1bd118e5d2eb5354 (patch) | |
tree | c5d7d3264af1885998025079d673cf1bdaadf696 /target/ppc/excp_helper.c | |
parent | 3189fa391702314b84edbf0edbf25a5c08ccad9e (diff) | |
download | qemu-25fe5f7534ee9dce6c2f038b1bd118e5d2eb5354.zip qemu-25fe5f7534ee9dce6c2f038b1bd118e5d2eb5354.tar.gz qemu-25fe5f7534ee9dce6c2f038b1bd118e5d2eb5354.tar.bz2 |
target/ppc: 6xx: Program exception cleanup
There's no ESR in the 6xx CPUs.
Signed-off-by: Fabiano Rosas <farosas@linux.ibm.com>
Message-Id: <20220203200957.1434641-8-farosas@linux.ibm.com>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Diffstat (limited to 'target/ppc/excp_helper.c')
-rw-r--r-- | target/ppc/excp_helper.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/target/ppc/excp_helper.c b/target/ppc/excp_helper.c index a008115..a195288 100644 --- a/target/ppc/excp_helper.c +++ b/target/ppc/excp_helper.c @@ -651,20 +651,16 @@ static void powerpc_excp_6xx(PowerPCCPU *cpu, int excp) * precise in the MSR. */ msr |= 0x00100000; - env->spr[SPR_BOOKE_ESR] = ESR_FP; break; case POWERPC_EXCP_INVAL: trace_ppc_excp_inval(env->nip); msr |= 0x00080000; - env->spr[SPR_BOOKE_ESR] = ESR_PIL; break; case POWERPC_EXCP_PRIV: msr |= 0x00040000; - env->spr[SPR_BOOKE_ESR] = ESR_PPR; break; case POWERPC_EXCP_TRAP: msr |= 0x00020000; - env->spr[SPR_BOOKE_ESR] = ESR_PTR; break; default: /* Should never occur */ |