lldb - ELF: add ARM64 relocation jump slot handling in ELFHeader.

See http://reviews.llvm.org/D4579 for more details.

Change by Paul Osmialowski.

llvm-svn: 216739
This commit is contained in:
Todd Fiala 2014-08-29 16:19:27 +00:00
parent e5f15210fb
commit 33bba9f440
1 changed files with 3 additions and 0 deletions

View File

@ -186,6 +186,9 @@ ELFHeader::GetRelocationJumpSlotType() const
case EM_HEXAGON:
slot = R_HEX_JMP_SLOT;
break;
case EM_AARCH64:
slot = R_AARCH64_JUMP_SLOT;
break;
}
return slot;