diff options
Diffstat (limited to 'lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp')
-rw-r--r-- | lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp b/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp index aa9871071b0..14c7e471edf 100644 --- a/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp +++ b/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp @@ -180,6 +180,9 @@ unsigned ELFHeader::GetRelocationJumpSlotType() const { default: assert(false && "architecture not supported"); break; + case EM_CASCADE: + slot = R_CASCADE_JUMP_SLOT; + break; case EM_PPC: slot = R_PPC_JMP_SLOT; break; |