Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/external/gpl3/gdb/dist/gdb Use void* instead of pr{f, }pregse...
details: https://anonhg.NetBSD.org/src/rev/93ab31dcac2b
branches: trunk
changeset: 772996:93ab31dcac2b
user: martin <martin%NetBSD.org@localhost>
date: Mon Jan 23 21:51:46 2012 +0000
description:
Use void* instead of pr{f,}pregset_t for now to make it compile.
diffstat:
external/gpl3/gdb/dist/gdb/sparc64nbsd-nat.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (34 lines):
diff -r fcf85e4a5b43 -r 93ab31dcac2b external/gpl3/gdb/dist/gdb/sparc64nbsd-nat.c
--- a/external/gpl3/gdb/dist/gdb/sparc64nbsd-nat.c Mon Jan 23 21:28:40 2012 +0000
+++ b/external/gpl3/gdb/dist/gdb/sparc64nbsd-nat.c Mon Jan 23 21:51:46 2012 +0000
@@ -128,26 +128,26 @@
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);
}
Home |
Main Index |
Thread Index |
Old Index