| Index: gdb/sparc-nat.h
|
| diff --git a/gdb/sparc-nat.h b/gdb/sparc-nat.h
|
| index 41c1d729494b0643e5e544931114f74cb3c233bb..e5ce9b468705e3824c539c26f9484c8242b0fa41 100644
|
| --- a/gdb/sparc-nat.h
|
| +++ b/gdb/sparc-nat.h
|
| @@ -1,6 +1,6 @@
|
| /* Native-dependent code for SPARC.
|
|
|
| - Copyright (C) 2003-2004, 2007-2012 Free Software Foundation, Inc.
|
| + Copyright (C) 2003-2013 Free Software Foundation, Inc.
|
|
|
| This file is part of GDB.
|
|
|
| @@ -21,14 +21,18 @@
|
| #define SPARC_NAT_H 1
|
|
|
| struct sparc_gregset;
|
| +struct sparc_fpregset;
|
|
|
| extern const struct sparc_gregset *sparc_gregset;
|
| +extern const struct sparc_fpregset *sparc_fpregset;
|
| extern void (*sparc_supply_gregset) (const struct sparc_gregset *,
|
| struct regcache *, int , const void *);
|
| extern void (*sparc_collect_gregset) (const struct sparc_gregset *,
|
| const struct regcache *, int, void *);
|
| -extern void (*sparc_supply_fpregset) (struct regcache *, int , const void *);
|
| -extern void (*sparc_collect_fpregset) (const struct regcache *, int , void *);
|
| +extern void (*sparc_supply_fpregset) (const struct sparc_fpregset *,
|
| + struct regcache *, int , const void *);
|
| +extern void (*sparc_collect_fpregset) (const struct sparc_fpregset *,
|
| + const struct regcache *, int , void *);
|
| extern int (*sparc_gregset_supplies_p) (struct gdbarch *gdbarch, int);
|
| extern int (*sparc_fpregset_supplies_p) (struct gdbarch *gdbarch, int);
|
|
|
|
|