summaryrefslogtreecommitdiffstats
path: root/gdbstub.c
diff options
context:
space:
mode:
authorPeter Crosthwaite <crosthwaitepeter@gmail.com>2015-06-23 20:19:21 -0700
committerAndreas Färber <afaerber@suse.de>2015-07-09 15:20:40 +0200
commit4a2b24edb73f98fa58fd8965db5b312617de7a02 (patch)
treec8d647179a69f59eeac49da525851d1bff71376a /gdbstub.c
parent2991b8904730d663f12ad42e35798ecc22fe151c (diff)
downloadhqemu-4a2b24edb73f98fa58fd8965db5b312617de7a02.zip
hqemu-4a2b24edb73f98fa58fd8965db5b312617de7a02.tar.gz
gdbstub: Use cpu_set_pc() helper
Use the cpu_set_pc() helper which will take care of CPUClass retrieval for us. Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'gdbstub.c')
-rw-r--r--gdbstub.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/gdbstub.c b/gdbstub.c
index aa5ba51..92b2f81 100644
--- a/gdbstub.c
+++ b/gdbstub.c
@@ -754,12 +754,9 @@ static void gdb_breakpoint_remove_all(void)
static void gdb_set_cpu_pc(GDBState *s, target_ulong pc)
{
CPUState *cpu = s->c_cpu;
- CPUClass *cc = CPU_GET_CLASS(cpu);
cpu_synchronize_state(cpu);
- if (cc->set_pc) {
- cc->set_pc(cpu, pc);
- }
+ cpu_set_pc(cpu, pc);
}
static CPUState *find_cpu(uint32_t thread_id)
OpenPOWER on IntegriCloud