diff options
author | George Rimar <grimar@accesssoftek.com> | 2016-09-17 07:31:49 +0000 |
---|---|---|
committer | George Rimar <grimar@accesssoftek.com> | 2016-09-17 07:31:49 +0000 |
commit | 8034d49db5f4671033787f89200776211e54bdc5 (patch) | |
tree | e5859bdb2af59f56f0980609f57a7cb7e193b9d5 | |
parent | 58209dd9ad6a772ae37198f9216effc209138521 (diff) | |
download | bcm5719-llvm-8034d49db5f4671033787f89200776211e54bdc5.tar.gz bcm5719-llvm-8034d49db5f4671033787f89200776211e54bdc5.zip |
[ELF] - Fixed mistypes in comments. NFC.
llvm-svn: 281817
-rw-r--r-- | lld/ELF/LinkerScript.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/ELF/LinkerScript.h b/lld/ELF/LinkerScript.h index 142fd2a7670..373e98e9cae 100644 --- a/lld/ELF/LinkerScript.h +++ b/lld/ELF/LinkerScript.h @@ -98,7 +98,7 @@ struct OutputSectionCommand : BaseCommand { ConstraintKind Constraint = ConstraintKind::NoConstraint; }; -// This struct reprents one section match pattern in SECTIONS() command. +// This struct represents one section match pattern in SECTIONS() command. // It can optionally have negative match pattern for EXCLUDED_FILE command. struct SectionPattern { llvm::Regex ExcludedFileRe; @@ -114,7 +114,7 @@ struct InputSectionDescription : BaseCommand { SortSectionPolicy SortOuter = SortSectionPolicy::Default; SortSectionPolicy SortInner = SortSectionPolicy::Default; - // Input sections that matches at lesat one of SectionPatterns + // Input sections that matches at least one of SectionPatterns // will be associated with this InputSectionDescription. // We use std::list instead of std::vector because SectionPattern // do not support move assignment. |