Skip to content

Commit

Permalink
Revert "[NFC] Fix typos"
Browse files Browse the repository at this point in the history
This reverts commit b7425e9.
  • Loading branch information
Kostya Kortchinsky committed Aug 16, 2021
1 parent 8bc72de commit 80ed75e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Expand Up @@ -6,7 +6,7 @@
//
//===----------------------------------------------------------------------===//
//
// This file defines a CheckObjCInstMethSignature, a flow-insensitive check
// This file defines a CheckObjCInstMethSignature, a flow-insenstive check
// that determines if an Objective-C class interface incorrectly redefines
// the method signature in a subclass.
//
Expand Down
2 changes: 1 addition & 1 deletion clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
Expand Up @@ -6,7 +6,7 @@
//
//===----------------------------------------------------------------------===//
//
// This file defines a CheckNSError, a flow-insensitive check
// This file defines a CheckNSError, a flow-insenstive check
// that determines if an Objective-C class interface correctly returns
// a non-void return type.
//
Expand Down
2 changes: 1 addition & 1 deletion compiler-rt/test/profile/Linux/instrprof-cs.c
Expand Up @@ -8,7 +8,7 @@
// RUN: %clang_profgen=%t.profraw -o %t.gen.cis -O2 %s
// RUN: %run %t.gen.cis
// RUN: llvm-profdata merge -o %t.cis.profdata %t.profraw
// Check context insensitive profile
// Check context insenstive profile
// RUN: %clang_profuse=%t.cis.profdata -O2 -emit-llvm -S %s -o - | FileCheck %s --check-prefix=CIS
int g1 = 1;
int volatile g2 = 2;
Expand Down
4 changes: 2 additions & 2 deletions llvm/include/llvm/Transforms/Instrumentation.h
Expand Up @@ -78,7 +78,7 @@ struct GCOVOptions {
ModulePass *createGCOVProfilerPass(const GCOVOptions &Options =
GCOVOptions::getDefault());

// PGO Instrumention. Parameter IsCS indicates if this is the context sensitive
// PGO Instrumention. Parameter IsCS indicates if this is the context senstive
// instrumentation.
ModulePass *createPGOInstrumentationGenLegacyPass(bool IsCS = false);
ModulePass *
Expand Down Expand Up @@ -138,7 +138,7 @@ struct InstrProfOptions {
};

/// Insert frontend instrumentation based profiling. Parameter IsCS indicates if
// this is the context sensitive instrumentation.
// this is the context senstive instrumentation.
ModulePass *createInstrProfilingLegacyPass(
const InstrProfOptions &Options = InstrProfOptions(), bool IsCS = false);

Expand Down
2 changes: 1 addition & 1 deletion llvm/lib/ProfileData/SampleProfReader.cpp
Expand Up @@ -53,7 +53,7 @@ using namespace sampleprof;
// For ext-binary format profiles, the flag is set in the summary.
static cl::opt<bool> ProfileIsFSDisciminator(
"profile-isfs", cl::Hidden, cl::init(false),
cl::desc("Profile uses flow sensitive discriminators"));
cl::desc("Profile uses flow senstive discriminators"));

/// Dump the function profile for \p FName.
///
Expand Down

0 comments on commit 80ed75e

Please sign in to comment.