Skip to content

Commit 3238b03

Browse files
committed
[LLD][ELF][ARM] clang-format function signature [NFC]
ARM::needsThunk had gone over 80 characters, run clang-format over it to prevent it wrapping.
1 parent 5c05165 commit 3238b03

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lld/ELF/Arch/ARM.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,8 @@ void ARM::addPltSymbols(InputSection &isec, uint64_t off) const {
263263
}
264264

265265
bool ARM::needsThunk(RelExpr expr, RelType type, const InputFile *file,
266-
uint64_t branchAddr, const Symbol &s, int64_t /*a*/) const {
266+
uint64_t branchAddr, const Symbol &s,
267+
int64_t /*a*/) const {
267268
// If S is an undefined weak symbol and does not have a PLT entry then it
268269
// will be resolved as a branch to the next instruction.
269270
if (s.isUndefWeak() && !s.isInPlt())

0 commit comments

Comments
 (0)