[ELF] Fix typo in comment for getISDThunkSec [NFC]
authorPeter Smith <peter.smith@linaro.org>
Mon, 6 Nov 2017 10:36:18 +0000 (10:36 +0000)
committerPeter Smith <peter.smith@linaro.org>
Mon, 6 Nov 2017 10:36:18 +0000 (10:36 +0000)
The ISR in the comment should read ISD for InputSectionDescription. The use
of ISR (InputSectionRange) was from the original implementation that did not
use the sections from InputSectionDescription directly.

llvm-svn: 317469

lld/ELF/Relocations.cpp

index f157b3a..93f5ee8 100644 (file)
@@ -1184,7 +1184,7 @@ void ThunkCreator::mergeThunks(ArrayRef<OutputSection *> OutputSections) {
 }
 
 // Find or create a ThunkSection within the InputSectionDescription (ISD) that
-// is in range of Src. An ISR maps to a range of InputSections described by a
+// is in range of Src. An ISD maps to a range of InputSections described by a
 // linker script section pattern such as { .text .text.* }.
 ThunkSection *ThunkCreator::getISDThunkSec(OutputSection *OS, InputSection *IS,
                                            InputSectionDescription *ISD,