diff options
author | Aaron Smith <aaron.smith@microsoft.com> | 2019-07-10 03:34:57 +0000 |
---|---|---|
committer | Aaron Smith <aaron.smith@microsoft.com> | 2019-07-10 03:34:57 +0000 |
commit | 053eb35651906e693906fad6c695fce11415ade7 (patch) | |
tree | b680661b4ed9ade7032e7f67482fac91cd12ca3d /lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp | |
parent | 7f9a94e1f88e27143f52a05da2ef3467081f2508 (diff) | |
download | bcm5719-llvm-053eb35651906e693906fad6c695fce11415ade7.tar.gz bcm5719-llvm-053eb35651906e693906fad6c695fce11415ade7.zip |
Try again to move common functionality from ProcessWindows into ProcessDebugger
This reverts commit ed499a36b67cf46cbf66052cfe374c80a595f1c1 and addresses
a problem causing a Windows build bot to hang.
llvm-svn: 365592
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; |