diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2016-04-20 17:30:22 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2016-04-20 17:30:22 +0000 |
commit | c6b17bdc292f07af475e6dabff94a41a066227ee (patch) | |
tree | 9283dcc2391018826446175267a7eae3fe379a51 /lld/ELF/Writer.cpp | |
parent | 0ecff953c3d12b83f76c93443de18c7efe20a1ed (diff) | |
download | bcm5719-llvm-c6b17bdc292f07af475e6dabff94a41a066227ee.tar.gz bcm5719-llvm-c6b17bdc292f07af475e6dabff94a41a066227ee.zip |
Delete refersToGotEntry.
It can be computed from the expression.
llvm-svn: 266890
Diffstat (limited to 'lld/ELF/Writer.cpp')
-rw-r--r-- | lld/ELF/Writer.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lld/ELF/Writer.cpp b/lld/ELF/Writer.cpp index 8d276ec2d65..5d98ff7c99b 100644 --- a/lld/ELF/Writer.cpp +++ b/lld/ELF/Writer.cpp @@ -573,9 +573,7 @@ void Writer<ELFT>::scanRelocs(InputSectionBase<ELFT> &C, ArrayRef<RelTy> Rels) { } // If a relocation needs GOT, we create a GOT slot for the symbol. - if (Expr == R_GOT || Expr == R_GOT_OFF || Expr == R_MIPS_GOT || - Expr == R_MIPS_GOT_LOCAL || Expr == R_GOT_PAGE_PC || Expr == R_GOT_PC || - Expr == R_GOT_FROM_END) { + if (refersToGotEntry(Expr)) { uint32_t T = Body.isTls() ? Target->getTlsGotRel(Type) : Type; if (Config->EMachine == EM_MIPS && Expr == R_GOT_OFF) Addend -= MipsGPOffset; |