aboutsummaryrefslogtreecommitdiff
path: root/llvm
diff options
context:
space:
mode:
authorWolfgang Pieb <wolfgang_pieb@playstation.sony.com>2020-07-01 14:28:52 -0700
committerWolfgang Pieb <wolfgang_pieb@playstation.sony.com>2020-07-06 17:27:51 -0700
commit129387497e582ae96de41c56083fe52fce68ba91 (patch)
tree736b0e247a84719cf2f7b08a402717e579229198 /llvm
parent3c7e8d6d0eb0660fb8fbae98c3e49ca059943416 (diff)
downloadllvm-129387497e582ae96de41c56083fe52fce68ba91.zip
llvm-129387497e582ae96de41c56083fe52fce68ba91.tar.gz
llvm-129387497e582ae96de41c56083fe52fce68ba91.tar.bz2
Correct 3 spelling errors in headers and doc strings.
Diffstat (limited to 'llvm')
-rw-r--r--llvm/include/llvm/DebugInfo/GSYM/InlineInfo.h2
-rw-r--r--llvm/lib/Target/X86/X86SpeculativeExecutionSideEffectSuppression.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/DebugInfo/GSYM/InlineInfo.h b/llvm/include/llvm/DebugInfo/GSYM/InlineInfo.h
index 3b95e3e..06126da 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 1f8285e..29d54b2 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)