am 88117127: am b81a871c: Merge changes I88827aa0,Ib0b0987a

* commit '88117127defa6aeb26840ec8547486aefd5edd73':
  Fix: DT_DEBUG was acting as DT_REL on mips64
  Add missing SHT_LOOS/SHT_HIOS values
This commit is contained in:
Dmitriy Ivanov 2015-02-14 00:49:33 +00:00 committed by Android Git Automerger
commit 39c9f7bc65
2 changed files with 4 additions and 1 deletions

View file

@ -106,6 +106,9 @@ typedef struct {
#define STB_LOPROC 13
#define STB_HIPROC 15
#define SHT_LOOS 0x60000000
#define SHT_HIOS 0x6fffffff
#define STT_GNU_IFUNC 10
#define STT_LOOS 10
#define STT_HIOS 12

View file

@ -2040,8 +2040,8 @@ bool soinfo::prelink_image() {
if ((dynamic_flags & PF_W) != 0) {
d->d_un.d_val = reinterpret_cast<uintptr_t>(&_r_debug);
}
break;
#endif
break;
#if defined(USE_RELA)
case DT_RELA:
rela_ = reinterpret_cast<ElfW(Rela)*>(load_bias + d->d_un.d_ptr);