Module Name: src Committed By: martin Date: Mon Jan 23 21:51:46 UTC 2012
Modified Files: src/external/gpl3/gdb/dist/gdb: sparc64nbsd-nat.c Log Message: Use void* instead of pr{f,}pregset_t for now to make it compile. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/gpl3/gdb/dist/gdb/sparc64nbsd-nat.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/external/gpl3/gdb/dist/gdb/sparc64nbsd-nat.c diff -u src/external/gpl3/gdb/dist/gdb/sparc64nbsd-nat.c:1.3 src/external/gpl3/gdb/dist/gdb/sparc64nbsd-nat.c:1.4 --- src/external/gpl3/gdb/dist/gdb/sparc64nbsd-nat.c:1.3 Mon Jan 23 21:28:40 2012 +++ src/external/gpl3/gdb/dist/gdb/sparc64nbsd-nat.c Mon Jan 23 21:51:46 2012 @@ -128,26 +128,26 @@ sparc64nbsd_fpregset_supplies_p (struct void -supply_gregset (struct regcache *regcache, const prgregset_t *gregs) +supply_gregset (struct regcache *regcache, const void *gregs) { sparc64nbsd_supply_gregset (sparc_gregset, regcache, -1, gregs); } void -supply_fpregset (struct regcache *regcache, const prfpregset_t *fpregs) +supply_fpregset (struct regcache *regcache, const void *fpregs) { sparc64nbsd_supply_fpregset (regcache, -1, fpregs); } void -fill_gregset (const struct regcache *regcache, prgregset_t *gregs, int regnum) +fill_gregset (const struct regcache *regcache, void *gregs, int regnum) { sparc64nbsd_collect_gregset (sparc_gregset, regcache, regnum, gregs); } void fill_fpregset (const struct regcache *regcache, - prfpregset_t *fpregs, int regnum) + void *fpregs, int regnum) { sparc64nbsd_collect_fpregset (regcache, regnum, fpregs); }