[lld] r250947 - ELF2: Remove FIXMEs.
Rui Ueyama via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 21 14:13:36 PDT 2015
Author: ruiu
Date: Wed Oct 21 16:13:35 2015
New Revision: 250947
URL: http://llvm.org/viewvc/llvm-project?rev=250947&view=rev
Log:
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.
Modified:
lld/trunk/ELF/Target.cpp
Modified: lld/trunk/ELF/Target.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/Target.cpp?rev=250947&r1=250946&r2=250947&view=diff
==============================================================================
--- lld/trunk/ELF/Target.cpp (original)
+++ lld/trunk/ELF/Target.cpp Wed Oct 21 16:13:35 2015
@@ -591,10 +591,7 @@ void PPC64TargetInfo::relocateOne(uint8_
}
}
-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(uint
}
template <class ELFT> MipsTargetInfo<ELFT>::MipsTargetInfo() {
- // PCRelReloc = FIXME
- // GotReloc = FIXME
PageSize = 65536;
}
More information about the llvm-commits
mailing list