diff options
author | Fabien Chouteau <chouteau@adacore.com> | 2011-09-01 04:56:00 +0000 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2011-10-06 09:48:05 +0200 |
commit | 5a576fb3e20c3087a6d30be5a94550ace003c6d7 (patch) | |
tree | 637669ec0fca63e6e623ae158848dc79ab999114 /gdbstub.c | |
parent | f5b6ffcf2a94337df31e801dd11b34896bd4fe2b (diff) |
Gdbstub: handle read of fpscr
Signed-off-by: Fabien Chouteau <chouteau@adacore.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'gdbstub.c')
-rw-r--r-- | gdbstub.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -733,7 +733,7 @@ static int cpu_gdb_read_register(CPUState *env, uint8_t *mem_buf, int n) { if (gdb_has_xml) return 0; - GET_REG32(0); /* fpscr */ + GET_REG32(env->fpscr); } } } |