diff options
Diffstat (limited to 'gdb/i387-tdep.c')
-rw-r--r-- | gdb/i387-tdep.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gdb/i387-tdep.c b/gdb/i387-tdep.c index c0dd349..7ec7f53 100644 --- a/gdb/i387-tdep.c +++ b/gdb/i387-tdep.c @@ -253,7 +253,8 @@ i387_print_float_info (struct gdbarch *gdbarch, struct ui_file *file, break; } - get_frame_register (frame, (fpreg + 8 - top) % 8 + I387_ST0_REGNUM (tdep), + get_frame_register (frame, + (fpreg + 8 - top) % 8 + I387_ST0_REGNUM (tdep), raw); fputs_filtered ("0x", file); @@ -287,7 +288,8 @@ i387_print_float_info (struct gdbarch *gdbarch, struct ui_file *file, needs any special handling. */ int -i387_convert_register_p (struct gdbarch *gdbarch, int regnum, struct type *type) +i387_convert_register_p (struct gdbarch *gdbarch, int regnum, + struct type *type) { if (i386_fp_regnum_p (gdbarch, regnum)) { @@ -957,7 +959,7 @@ i387_collect_xsave (const struct regcache *regcache, int regnum, gdb_byte raw[I386_MAX_REGISTER_SIZE]; gdb_byte *xstate_bv_p = XSAVE_XSTATE_BV_ADDR (regs); unsigned int xstate_bv = 0; - /* The supported bits in `xstat_bv' are 1 byte. */ + /* The supported bits in `xstat_bv' are 1 byte. */ unsigned int clear_bv = (~(*xstate_bv_p)) & tdep->xcr0; gdb_byte *p; |