diff options
author | Rui Ueyama <ruiu@google.com> | 2015-10-21 21:13:35 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2015-10-21 21:13:35 +0000 |
commit | 9cfc8e08a88a9fd3be7536cc50dfb32fcfaa568c (patch) | |
tree | fd27abd68a7f39a4116d4fc3e95b66e6a40355ef /lld/ELF/Target.cpp | |
parent | 45cbfa59498457de9108e148caa76a6f8e603a82 (diff) | |
download | bcm5719-llvm-9cfc8e08a88a9fd3be7536cc50dfb32fcfaa568c.tar.gz bcm5719-llvm-9cfc8e08a88a9fd3be7536cc50dfb32fcfaa568c.zip |
ELF2: Remove FIXMEs.
These classes are partially written, so almost all features
are FIXMEs. We do not want to add new FIXMEs to the classes
when we add new features to other non-stub classes.
llvm-svn: 250947
Diffstat (limited to 'lld/ELF/Target.cpp')
-rw-r--r-- | lld/ELF/Target.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lld/ELF/Target.cpp b/lld/ELF/Target.cpp index 3ad9deed4c5..fd41fae39cc 100644 --- a/lld/ELF/Target.cpp +++ b/lld/ELF/Target.cpp @@ -591,10 +591,7 @@ void PPC64TargetInfo::relocateOne(uint8_t *Buf, uint8_t *BufEnd, } } -AArch64TargetInfo::AArch64TargetInfo() { - // PCRelReloc = FIXME - // GotReloc = FIXME -} +AArch64TargetInfo::AArch64TargetInfo() {} void AArch64TargetInfo::writeGotPltEntry(uint8_t *Buf, uint64_t Plt) const {} void AArch64TargetInfo::writePltZeroEntry(uint8_t *Buf, uint64_t GotEntryAddr, @@ -675,8 +672,6 @@ void AArch64TargetInfo::relocateOne(uint8_t *Buf, uint8_t *BufEnd, } template <class ELFT> MipsTargetInfo<ELFT>::MipsTargetInfo() { - // PCRelReloc = FIXME - // GotReloc = FIXME PageSize = 65536; } |