diff options
author | Daniel Jacobowitz <drow@false.org> | 2001-07-02 19:37:59 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2001-07-02 19:37:59 +0000 |
commit | f7856c8f27436188a31447263496cddab9b3f1df (patch) | |
tree | 19b8e040a161d40692b5ffe20707025ae0d56d6f /gdb/solib-svr4.c | |
parent | f9aca02d5a02f5a83c52fc22c55d333f2546c0a0 (diff) | |
download | gdb-f7856c8f27436188a31447263496cddab9b3f1df.zip gdb-f7856c8f27436188a31447263496cddab9b3f1df.tar.gz gdb-f7856c8f27436188a31447263496cddab9b3f1df.tar.bz2 |
2001-07-02 Daniel Jacobowitz <drow@mvista.com>
* solib-svr4.c: Include "elf/mips.h".
(elf_locate_base): Make DT_MIPS_RLD_MAP block unconditional.
Diffstat (limited to 'gdb/solib-svr4.c')
-rw-r--r-- | gdb/solib-svr4.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/solib-svr4.c b/gdb/solib-svr4.c index 1112e29..7da1481 100644 --- a/gdb/solib-svr4.c +++ b/gdb/solib-svr4.c @@ -37,6 +37,7 @@ #else #include "elf/external.h" #include "elf/common.h" +#include "elf/mips.h" #endif #include "symtab.h" @@ -623,7 +624,6 @@ elf_locate_base (void) (bfd_byte *) x_dynp->d_un.d_ptr); return dyn_ptr; } -#ifdef DT_MIPS_RLD_MAP else if (dyn_tag == DT_MIPS_RLD_MAP) { char *pbuf; @@ -637,7 +637,6 @@ elf_locate_base (void) return 0; return extract_unsigned_integer (pbuf, sizeof (pbuf)); } -#endif } } else /* 64-bit elf */ |