[llvm] 1293874 - Correct 3 spelling errors in headers and doc strings.
Wolfgang Pieb via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 6 17:28:29 PDT 2020
Author: Wolfgang Pieb
Date: 2020-07-06T17:27:51-07:00
New Revision: 129387497e582ae96de41c56083fe52fce68ba91
URL: https://github.com/llvm/llvm-project/commit/129387497e582ae96de41c56083fe52fce68ba91
DIFF: https://github.com/llvm/llvm-project/commit/129387497e582ae96de41c56083fe52fce68ba91.diff
LOG: Correct 3 spelling errors in headers and doc strings.
Added:
Modified:
llvm/include/llvm/DebugInfo/GSYM/InlineInfo.h
llvm/lib/Target/X86/X86SpeculativeExecutionSideEffectSuppression.cpp
Removed:
################################################################################
diff --git a/llvm/include/llvm/DebugInfo/GSYM/InlineInfo.h b/llvm/include/llvm/DebugInfo/GSYM/InlineInfo.h
index 3b95e3e050bd..06126da7d007 100644
--- a/llvm/include/llvm/DebugInfo/GSYM/InlineInfo.h
+++ b/llvm/include/llvm/DebugInfo/GSYM/InlineInfo.h
@@ -46,7 +46,7 @@ class GsymReader;
/// also makes any encoded addresses easy to relocate as we just need to
/// relocate the FunctionInfo's start address.
///
-/// - The AddressRanges member "Ranges" is encoded using an approriate base
+/// - The AddressRanges member "Ranges" is encoded using an appropriate base
/// address as described above.
/// - UINT8 boolean value that specifies if the InlineInfo object has children.
/// - UINT32 string table offset that points to the name of the inline
diff --git a/llvm/lib/Target/X86/X86SpeculativeExecutionSideEffectSuppression.cpp b/llvm/lib/Target/X86/X86SpeculativeExecutionSideEffectSuppression.cpp
index 1f8285eadb7e..29d54b26135a 100644
--- a/llvm/lib/Target/X86/X86SpeculativeExecutionSideEffectSuppression.cpp
+++ b/llvm/lib/Target/X86/X86SpeculativeExecutionSideEffectSuppression.cpp
@@ -30,7 +30,7 @@ STATISTIC(NumLFENCEsInserted, "Number of lfence instructions inserted");
static cl::opt<bool> EnableSpeculativeExecutionSideEffectSuppression(
"x86-seses-enable",
- cl::desc("Force enable speculative execution side effect suppresion. "
+ cl::desc("Force enable speculative execution side effect suppression. "
"(Note: User must pass -mlvi-cfi in order to mitigate indirect "
"branches and returns.)"),
cl::init(false), cl::Hidden);
@@ -153,5 +153,5 @@ FunctionPass *llvm::createX86SpeculativeExecutionSideEffectSuppression() {
}
INITIALIZE_PASS(X86SpeculativeExecutionSideEffectSuppression, "x86-seses",
- "X86 Speculative Execution Side Effect Suppresion", false,
+ "X86 Speculative Execution Side Effect Suppression", false,
false)
More information about the llvm-commits
mailing list