forked from OSchip/llvm-project
[LLD][ELF][ARM] clang-format function signature [NFC]
ARM::needsThunk had gone over 80 characters, run clang-format over it to prevent it wrapping.
This commit is contained in:
parent
5c05165984
commit
3238b03c19
|
@ -263,7 +263,8 @@ void ARM::addPltSymbols(InputSection &isec, uint64_t off) const {
|
|||
}
|
||||
|
||||
bool ARM::needsThunk(RelExpr expr, RelType type, const InputFile *file,
|
||||
uint64_t branchAddr, const Symbol &s, int64_t /*a*/) const {
|
||||
uint64_t branchAddr, const Symbol &s,
|
||||
int64_t /*a*/) const {
|
||||
// If S is an undefined weak symbol and does not have a PLT entry then it
|
||||
// will be resolved as a branch to the next instruction.
|
||||
if (s.isUndefWeak() && !s.isInPlt())
|
||||
|
|
Loading…
Reference in New Issue