diff options
Diffstat (limited to 'lld/ELF/Thunks.cpp')
-rw-r--r-- | lld/ELF/Thunks.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/ELF/Thunks.cpp b/lld/ELF/Thunks.cpp index 32e935126e7..73208f93203 100644 --- a/lld/ELF/Thunks.cpp +++ b/lld/ELF/Thunks.cpp @@ -388,7 +388,7 @@ static uint64_t getARMThunkDestVA(const Symbol &s) { } // This function returns true if the target is not Thumb and is within 2^26, and -// it has not previously returned false (see comment for MayUseShortThunk). +// it has not previously returned false (see comment for mayUseShortThunk). bool ARMThunk::getMayUseShortThunk() { if (!mayUseShortThunk) return false; @@ -426,7 +426,7 @@ bool ARMThunk::isCompatibleWith(const InputSection &isec, } // This function returns true if the target is Thumb and is within 2^25, and -// it has not previously returned false (see comment for MayUseShortThunk). +// it has not previously returned false (see comment for mayUseShortThunk). bool ThumbThunk::getMayUseShortThunk() { if (!mayUseShortThunk) return false; |