diff options
author | Zaara Syeda <syzaara@ca.ibm.com> | 2018-05-04 15:09:49 +0000 |
---|---|---|
committer | Zaara Syeda <syzaara@ca.ibm.com> | 2018-05-04 15:09:49 +0000 |
commit | f61b0733a8549ac8fce9930afed9997e39e3b4d8 (patch) | |
tree | 58398bb99db0d4ed31b87146b8f0ee36ebe7e82a /lld/ELF/OutputSections.cpp | |
parent | 5291562acd2b41cf3744986efff9f13b0ea8d144 (diff) | |
download | bcm5719-llvm-f61b0733a8549ac8fce9930afed9997e39e3b4d8.tar.gz bcm5719-llvm-f61b0733a8549ac8fce9930afed9997e39e3b4d8.zip |
[PPC64] Remove support for ELF V1 ABI in LLD
The current support for V1 ABI in LLD is incomplete.
This patch removes V1 ABI support and changes the default behavior to V2 ABI,
issuing an error when using the V1 ABI. It also updates the testcases to V2
and removes any V1 specific tests.
Differential Revision: https://reviews.llvm.org/D46316
llvm-svn: 331529
Diffstat (limited to 'lld/ELF/OutputSections.cpp')
-rw-r--r-- | lld/ELF/OutputSections.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lld/ELF/OutputSections.cpp b/lld/ELF/OutputSections.cpp index 325b5be4238..31e1d196db4 100644 --- a/lld/ELF/OutputSections.cpp +++ b/lld/ELF/OutputSections.cpp @@ -31,8 +31,6 @@ using namespace lld; using namespace lld::elf; uint8_t Out::First; -OutputSection *Out::Opd; -uint8_t *Out::OpdBuf; PhdrEntry *Out::TlsPhdr; OutputSection *Out::DebugInfo; OutputSection *Out::ElfHeader; |