diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2017-07-19 07:02:58 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2017-07-19 07:02:58 +0000 |
| commit | da06c7cfa0388de29a4024d8d386e48f2fb13ed6 (patch) | |
| tree | dc28e84fc2bb9a4a4d9873fe4d04946fe3f7f4c0 /ELF/Target.cpp | |
| parent | 267829774358b5aebd3e726ae318813bd48129bb (diff) | |
Notes
Diffstat (limited to 'ELF/Target.cpp')
| -rw-r--r-- | ELF/Target.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ELF/Target.cpp b/ELF/Target.cpp index c886419971bc..11986efc746f 100644 --- a/ELF/Target.cpp +++ b/ELF/Target.cpp @@ -128,6 +128,11 @@ bool TargetInfo::needsThunk(RelExpr Expr, uint32_t RelocType, return false; } +bool TargetInfo::inBranchRange(uint32_t RelocType, uint64_t Src, + uint64_t Dst) const { + return true; +} + void TargetInfo::writeIgotPlt(uint8_t *Buf, const SymbolBody &S) const { writeGotPlt(Buf, S); } |
