OSDN Git Service

Correct 3 spelling errors in headers and doc strings.
authorWolfgang Pieb <wolfgang_pieb@playstation.sony.com>
Wed, 1 Jul 2020 21:28:52 +0000 (14:28 -0700)
committerWolfgang Pieb <wolfgang_pieb@playstation.sony.com>
Tue, 7 Jul 2020 00:27:51 +0000 (17:27 -0700)
llvm/include/llvm/DebugInfo/GSYM/InlineInfo.h
llvm/lib/Target/X86/X86SpeculativeExecutionSideEffectSuppression.cpp

index 3b95e3e..06126da 100644 (file)
@@ -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
index 1f8285e..29d54b2 100644 (file)
@@ -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)