diff options
Diffstat (limited to 'gdb/i387-tdep.c')
-rw-r--r-- | gdb/i387-tdep.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/i387-tdep.c b/gdb/i387-tdep.c index b8c342d..35aee65 100644 --- a/gdb/i387-tdep.c +++ b/gdb/i387-tdep.c @@ -502,7 +502,7 @@ i387_collect_fsave (const struct regcache *regcache, int regnum, void *fsave) if (regnum == -1 || regnum == i) { /* Most of the FPU control registers occupy only 16 bits in - the fsave area. Give those a special treatment. */ + the fsave area. Give those a special treatment. */ if (i >= I387_FCTRL_REGNUM (tdep) && i != I387_FIOFF_REGNUM (tdep) && i != I387_FOOFF_REGNUM (tdep)) { @@ -513,7 +513,7 @@ i387_collect_fsave (const struct regcache *regcache, int regnum, void *fsave) if (i == I387_FOP_REGNUM (tdep)) { /* The opcode occupies only 11 bits. Make sure we - don't touch the other bits. */ + don't touch the other bits. */ buf[1] &= ((1 << 3) - 1); buf[1] |= ((FSAVE_ADDR (tdep, regs, i))[1] & ~((1 << 3) - 1)); } @@ -633,7 +633,7 @@ i387_supply_fxsave (struct regcache *regcache, int regnum, const void *fxsave) if (val[0] & (1 << fpreg)) { int thisreg = (fpreg + 8 - top) % 8 - + I387_ST0_REGNUM (tdep); + + I387_ST0_REGNUM (tdep); tag = i387_tag (FXSAVE_ADDR (tdep, regs, thisreg)); } else @@ -679,7 +679,7 @@ i387_collect_fxsave (const struct regcache *regcache, int regnum, void *fxsave) if (regnum == -1 || regnum == i) { /* Most of the FPU control registers occupy only 16 bits in - the fxsave area. Give those a special treatment. */ + the fxsave area. Give those a special treatment. */ if (i >= I387_FCTRL_REGNUM (tdep) && i < I387_XMM0_REGNUM (tdep) && i != I387_FIOFF_REGNUM (tdep) && i != I387_FOOFF_REGNUM (tdep)) { @@ -690,7 +690,7 @@ i387_collect_fxsave (const struct regcache *regcache, int regnum, void *fxsave) if (i == I387_FOP_REGNUM (tdep)) { /* The opcode occupies only 11 bits. Make sure we - don't touch the other bits. */ + don't touch the other bits. */ buf[1] &= ((1 << 3) - 1); buf[1] |= ((FXSAVE_ADDR (tdep, regs, i))[1] & ~((1 << 3) - 1)); } |