2004-07-17 Andrew Cagney <cagney@gnu.org>
* hppa-linux-nat.c: Do not include <string.h>. (supply_fpregset): Remove "register" attribute.
This commit is contained in:
parent
d5c560f7de
commit
1b89295f2f
2 changed files with 4 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
|||
2004-07-17 Andrew Cagney <cagney@gnu.org>
|
||||
|
||||
* hppa-linux-nat.c: Do not include <string.h>.
|
||||
(supply_fpregset): Remove "register" attribute.
|
||||
|
||||
* solib-frv.c (fetch_loadmap): Use xfree, not free.
|
||||
|
||||
2004-07-17 Mark Kettenis <kettenis@gnu.org>
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
|
||||
#include <sys/procfs.h>
|
||||
#include <sys/ptrace.h>
|
||||
#include <string.h>
|
||||
#include <linux/version.h>
|
||||
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,43)
|
||||
|
@ -342,7 +341,7 @@ fill_gregset (gdb_gregset_t *gregsetp, int regno)
|
|||
void
|
||||
supply_fpregset (gdb_fpregset_t *fpregsetp)
|
||||
{
|
||||
register int regi;
|
||||
int regi;
|
||||
char *from;
|
||||
|
||||
for (regi = 0; regi <= 31; regi++)
|
||||
|
|
Loading…
Add table
Reference in a new issue