gdbserver/ChangeLog
authorJiong Wang <jiwang@sourceware.org>
Tue, 17 Sep 2013 14:00:30 +0000 (14:00 +0000)
committerJiong Wang <jiwang@sourceware.org>
Tue, 17 Sep 2013 14:00:30 +0000 (14:00 +0000)
* linux-tile-low.c (tile_regsets): Modify the size field to 64-bit
for each register.

gdb/gdbserver/ChangeLog
gdb/gdbserver/linux-tile-low.c

index 59cbc32916ed9865fdc8ccf31c5e0d4877d755e2..91c61f37a50f0a09928ac9f8d49d7d3a9fdb8c3f 100644 (file)
@@ -1,3 +1,7 @@
+2013-09-16  Jiong Wang  <jiwang@tilera.com>
+       * linux-tile-low.c (tile_regsets): Modify the size field to 64-bit
+       for each register.
+
 2013-09-16  Jiong Wang  <jiwang@tilera.com>
        * configure.srv <tilegx*-*-linux*>: Remove linux-osdata.o from and add
        linux-tile-low.o to srv_tgtobj.
index 8963b9a1aa3c74ee916636e179c0246e50f05c74..8efb34eee888000e95d05d15b19332ac4df6f9f1 100644 (file)
@@ -124,7 +124,7 @@ tile_store_gregset (struct regcache *regcache, const void *buf)
 
 static struct regset_info tile_regsets[] =
 {
-  { PTRACE_GETREGS, PTRACE_SETREGS, 0, tile_num_regs * 4,
+  { PTRACE_GETREGS, PTRACE_SETREGS, 0, tile_num_regs * 8,
     GENERAL_REGS, tile_fill_gregset, tile_store_gregset },
   { 0, 0, 0, -1, -1, NULL, NULL }
 };
This page took 0.030798 seconds and 4 git commands to generate.