[llvm] r341740 - Fix typos. NFC
Fangrui Song via llvm-commits
llvm-commits at lists.llvm.org
Fri Sep 7 19:04:20 PDT 2018
Author: maskray
Date: Fri Sep 7 19:04:20 2018
New Revision: 341740
URL: http://llvm.org/viewvc/llvm-project?rev=341740&view=rev
Log:
Fix typos. NFC
Modified:
llvm/trunk/include/llvm/MC/MCParser/MCAsmLexer.h
llvm/trunk/lib/CodeGen/ImplicitNullChecks.cpp
llvm/trunk/lib/MC/MCContext.cpp
Modified: llvm/trunk/include/llvm/MC/MCParser/MCAsmLexer.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/MC/MCParser/MCAsmLexer.h?rev=341740&r1=341739&r2=341740&view=diff
==============================================================================
--- llvm/trunk/include/llvm/MC/MCParser/MCAsmLexer.h (original)
+++ llvm/trunk/include/llvm/MC/MCParser/MCAsmLexer.h Fri Sep 7 19:04:20 2018
@@ -77,7 +77,7 @@ public:
/// Consume the next token from the input stream and return it.
///
- /// The lexer will continuosly return the end-of-file token once the end of
+ /// The lexer will continuously return the end-of-file token once the end of
/// the main input file has been reached.
const AsmToken &Lex() {
assert(!CurTok.empty());
Modified: llvm/trunk/lib/CodeGen/ImplicitNullChecks.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/ImplicitNullChecks.cpp?rev=341740&r1=341739&r2=341740&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/ImplicitNullChecks.cpp (original)
+++ llvm/trunk/lib/CodeGen/ImplicitNullChecks.cpp Fri Sep 7 19:04:20 2018
@@ -90,7 +90,7 @@ class ImplicitNullChecks : public Machin
/// A data type for representing the result computed by \c
/// computeDependence. States whether it is okay to reorder the
/// instruction passed to \c computeDependence with at most one
- /// depednency.
+ /// dependency.
struct DependenceResult {
/// Can we actually re-order \p MI with \p Insts (see \c
/// computeDependence).
Modified: llvm/trunk/lib/MC/MCContext.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/MC/MCContext.cpp?rev=341740&r1=341739&r2=341740&view=diff
==============================================================================
--- llvm/trunk/lib/MC/MCContext.cpp (original)
+++ llvm/trunk/lib/MC/MCContext.cpp Fri Sep 7 19:04:20 2018
@@ -592,7 +592,7 @@ bool MCContext::isValidDwarfFileNumber(u
return !LineTable.getMCDwarfFiles()[FileNumber].Name.empty();
}
-/// Remove empty sections from SectionStartEndSyms, to avoid generating
+/// Remove empty sections from SectionsForRanges, to avoid generating
/// useless debug info for them.
void MCContext::finalizeDwarfSections(MCStreamer &MCOS) {
SectionsForRanges.remove_if(
More information about the llvm-commits
mailing list