diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2013-03-12 00:31:03 +0000 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2013-03-22 15:28:46 +0100 |
commit | 9baea4a303323932ec913728173ea38a4af05f3e (patch) | |
tree | c4f3dc0078c6c064ce61b1160fe5333488f6f35e /monitor.c | |
parent | d6478bc7e92db4669fac701d7bb8c51756b61d8a (diff) | |
download | qemu-9baea4a303323932ec913728173ea38a4af05f3e.zip qemu-9baea4a303323932ec913728173ea38a4af05f3e.tar.gz qemu-9baea4a303323932ec913728173ea38a4af05f3e.tar.bz2 |
target-ppc: Remove vestigial PowerPC 620 support
The PowerPC 620 was the very first 64-bit PowerPC implementation, but
hardly anyone ever actually used the chips. qemu notionally supports the
620, but since we don't actually have code to implement the segment table,
the support is broken (quite likely in other ways too).
This patch, therefore, removes all remaining pieces of 620 support, to
stop it cluttering up the platforms we actually care about. This includes
removing support for the ASR register, used only on segment table based
machines.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'monitor.c')
-rw-r--r-- | monitor.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -2960,10 +2960,6 @@ static const MonitorDef monitor_defs[] = { { "xer", 0, &monitor_get_xer, }, { "tbu", 0, &monitor_get_tbu, }, { "tbl", 0, &monitor_get_tbl, }, -#if defined(TARGET_PPC64) - /* Address space register */ - { "asr", offsetof(CPUPPCState, asr) }, -#endif /* Segment registers */ { "sdr1", offsetof(CPUPPCState, spr[SPR_SDR1]) }, { "sr0", offsetof(CPUPPCState, sr[0]) }, |