mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 19:09:31 +08:00
* i386-tdep.c (i386_go32_init_abi): Override the number of
registers due to non-support of SSE.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2009-05-01 Eli Zaretskii <eliz@gnu.org>
|
||||||
|
|
||||||
|
* i386-tdep.c (i386_go32_init_abi): Override the number of
|
||||||
|
registers due to non-support of SSE.
|
||||||
|
|
||||||
2009-04-30 Anthony Green <green@moxielogic.com>
|
2009-04-30 Anthony Green <green@moxielogic.com>
|
||||||
|
|
||||||
* configure.tgt: Link the moxie simulator in with gdb.
|
* configure.tgt: Link the moxie simulator in with gdb.
|
||||||
|
@ -2597,6 +2597,10 @@ i386_go32_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
|
|||||||
tdep->sigtramp_p = NULL;
|
tdep->sigtramp_p = NULL;
|
||||||
|
|
||||||
tdep->jb_pc_offset = 36;
|
tdep->jb_pc_offset = 36;
|
||||||
|
|
||||||
|
/* DJGPP does not support the SSE registers. */
|
||||||
|
tdep->num_xmm_regs = 0;
|
||||||
|
set_gdbarch_num_regs (gdbarch, I386_NUM_GREGS + I386_NUM_FREGS);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user