diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2007-07-16 18:34:50 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2007-07-16 18:34:50 +0000 |
commit | 2e024c20ebf22ba56d2b25498076c60cf957132e (patch) | |
tree | c51b7cf359cda12b45c958f07e8ea9af80a9c217 /gdb | |
parent | 7be360d1f5f9c4fd52b6a78812bc1bdbd2e74988 (diff) | |
download | gdb-2e024c20ebf22ba56d2b25498076c60cf957132e.zip gdb-2e024c20ebf22ba56d2b25498076c60cf957132e.tar.gz gdb-2e024c20ebf22ba56d2b25498076c60cf957132e.tar.bz2 |
2007-07-16 H.J. Lu <hongjiu.lu@intel.com>
* i386-linux-nat.c (fetch_regs): Work around gcc 3.4 alias
warning bug.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/i386-linux-nat.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f211744..eb48925 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2007-07-16 H.J. Lu <hongjiu.lu@intel.com> + + * i386-linux-nat.c (fetch_regs): Work around gcc 3.4 alias + warning bug. + 2007-07-13 Kevin Buettner <kevinb@redhat.com> * mep-tdep.c (mep_analyze_prologue): Update comment for BRA diff --git a/gdb/i386-linux-nat.c b/gdb/i386-linux-nat.c index a8d0295..973cba7 100644 --- a/gdb/i386-linux-nat.c +++ b/gdb/i386-linux-nat.c @@ -246,6 +246,7 @@ static void fetch_regs (struct regcache *regcache, int tid) { elf_gregset_t regs; + elf_gregset_t *regs_p = ®s; if (ptrace (PTRACE_GETREGS, tid, 0, (int) ®s) < 0) { @@ -260,7 +261,7 @@ fetch_regs (struct regcache *regcache, int tid) perror_with_name (_("Couldn't get registers")); } - supply_gregset (regcache, (const elf_gregset_t *) ®s); + supply_gregset (regcache, (const elf_gregset_t *) regs_p); } /* Store all valid general-purpose registers in GDB's register array |