diff -Naurd old/src/gdb/ppc-linux-tdep.c new/src/gdb/ppc-linux-tdep.c --- old/src/gdb/ppc-linux-tdep.c 2004-02-16 16:49:22.000000000 -0500 +++ new/src/gdb/ppc-linux-tdep.c 2004-04-07 14:24:48.158014232 -0500 @@ -36,6 +36,10 @@ #include "solib-svr4.h" #include "ppc-tdep.h" +#define ELF_NGREG 48 +#define ELF_NFPREG 33 +#define ELF_NVRREG 33 + /* The following instructions are used in the signal trampoline code on GNU/Linux PPC. The kernel used to use magic syscalls 0x6666 and 0x7777 but now uses the sigreturn syscalls. We check for both. */ @@ -951,13 +955,6 @@ return addr; } - -enum { - ELF_NGREG = 48, - ELF_NFPREG = 33, - ELF_NVRREG = 33 -}; - enum { ELF_GREGSET_SIZE = (ELF_NGREG * 4), ELF_FPREGSET_SIZE = (ELF_NFPREG * 8)