gdbserver/ChangeLog

* linux-tile-low.c (tile_regsets): Modify the size field to 64-bit
	for each register.
This commit is contained in:
Jiong Wang 2013-09-17 14:00:30 +00:00
parent 3d4a522e25
commit d6707650bf
2 changed files with 5 additions and 1 deletions

View 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.

View 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 }
};