Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a2a37696 authored by Christopher Ferris's avatar Christopher Ferris Committed by android-build-merger
Browse files

Merge "Fix bug in unwind_info display of exidx frame."

am: f835ba6b

Change-Id: If0db919392c6a83ab82fd3845e621f5dfac1f76a
parents e4005421 f835ba6b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -44,10 +44,10 @@ void DumpArm(Elf* elf, ElfInterfaceArm* interface) {
  }

  printf("ARM Unwind Information:\n");
  uint64_t load_bias = elf->GetLoadBias();
  for (const auto& entry : interface->pt_loads()) {
    uint64_t load_bias = entry.second.table_offset;
    printf(" PC Range 0x%" PRIx64 " - 0x%" PRIx64 "\n", entry.second.offset + load_bias,
           entry.second.table_size + load_bias);
           entry.second.offset + entry.second.table_size + load_bias);
    for (auto pc : *interface) {
      std::string name;
      printf("  PC 0x%" PRIx64, pc + load_bias);