summaryrefslogtreecommitdiff
path: root/gdb/i387-tdep.c
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@specifix.com>2011-02-26 23:49:19 +0000
committerMichael Snyder <msnyder@specifix.com>2011-02-26 23:49:19 +0000
commitfcb8f7c2a37606c91ddc9d7d9e3d4aae5c013475 (patch)
tree0d03790dc312b194f20834592ff0ee1da7b19a93 /gdb/i387-tdep.c
parent7de7ee7de60cb8acf6d169d9de07bbaa7e521b3b (diff)
downloadgdb-fcb8f7c2a37606c91ddc9d7d9e3d4aae5c013475.tar.gz
2011-02-26 Michael Snyder <msnyder@vmware.com>
* i387-tdep.c (i387_supply_fxsave): Avoid shadowing a function param with a local variable of the same name.
Diffstat (limited to 'gdb/i387-tdep.c')
-rw-r--r--gdb/i387-tdep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/i387-tdep.c b/gdb/i387-tdep.c
index 826746667ed..122bd83a397 100644
--- a/gdb/i387-tdep.c
+++ b/gdb/i387-tdep.c
@@ -587,9 +587,9 @@ i387_supply_fxsave (struct regcache *regcache, int regnum, const void *fxsave)
if (val[0] & (1 << fpreg))
{
- int regnum = (fpreg + 8 - top) % 8
- + I387_ST0_REGNUM (tdep);
- tag = i387_tag (FXSAVE_ADDR (tdep, regs, regnum));
+ int thisreg = (fpreg + 8 - top) % 8
+ + I387_ST0_REGNUM (tdep);
+ tag = i387_tag (FXSAVE_ADDR (tdep, regs, thisreg));
}
else
tag = 3; /* Empty */