2007-07-16 H.J. Lu <hongjiu.lu@intel.com>
authorH.J. Lu <hjl.tools@gmail.com>
Mon, 16 Jul 2007 18:34:50 +0000 (18:34 +0000)
committerH.J. Lu <hjl.tools@gmail.com>
Mon, 16 Jul 2007 18:34:50 +0000 (18:34 +0000)
* i386-linux-nat.c (fetch_regs): Work around gcc 3.4 alias
warning bug.

gdb/ChangeLog
gdb/i386-linux-nat.c

index f211744..eb48925 100644 (file)
@@ -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
index a8d0295..973cba7 100644 (file)
@@ -246,6 +246,7 @@ static void
 fetch_regs (struct regcache *regcache, int tid)
 {
   elf_gregset_t regs;
+  elf_gregset_t *regs_p = &regs;
 
   if (ptrace (PTRACE_GETREGS, tid, 0, (int) &regs) < 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 *) &regs);
+  supply_gregset (regcache, (const elf_gregset_t *) regs_p);
 }
 
 /* Store all valid general-purpose registers in GDB's register array