mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-23 22:00:10 +00:00
Reapply commit b7425e956
The commit b7425e956
: [NFC] fix typos
is harmless but was reverted by accident. Reapply.
This commit is contained in:
parent
b9e433b02a
commit
9b8425e42c
@ -6,7 +6,7 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file defines a CheckObjCInstMethSignature, a flow-insenstive check
|
||||
// This file defines a CheckObjCInstMethSignature, a flow-insensitive check
|
||||
// that determines if an Objective-C class interface incorrectly redefines
|
||||
// the method signature in a subclass.
|
||||
//
|
||||
|
@ -6,7 +6,7 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file defines a CheckNSError, a flow-insenstive check
|
||||
// This file defines a CheckNSError, a flow-insensitive check
|
||||
// that determines if an Objective-C class interface correctly returns
|
||||
// a non-void return type.
|
||||
//
|
||||
|
@ -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 insenstive profile
|
||||
// Check context insensitive 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;
|
||||
|
@ -78,7 +78,7 @@ struct GCOVOptions {
|
||||
ModulePass *createGCOVProfilerPass(const GCOVOptions &Options =
|
||||
GCOVOptions::getDefault());
|
||||
|
||||
// PGO Instrumention. Parameter IsCS indicates if this is the context senstive
|
||||
// PGO Instrumention. Parameter IsCS indicates if this is the context sensitive
|
||||
// instrumentation.
|
||||
ModulePass *createPGOInstrumentationGenLegacyPass(bool IsCS = false);
|
||||
ModulePass *
|
||||
@ -138,7 +138,7 @@ struct InstrProfOptions {
|
||||
};
|
||||
|
||||
/// Insert frontend instrumentation based profiling. Parameter IsCS indicates if
|
||||
// this is the context senstive instrumentation.
|
||||
// this is the context sensitive instrumentation.
|
||||
ModulePass *createInstrProfilingLegacyPass(
|
||||
const InstrProfOptions &Options = InstrProfOptions(), bool IsCS = false);
|
||||
|
||||
|
@ -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 senstive discriminators"));
|
||||
cl::desc("Profile uses flow sensitive discriminators"));
|
||||
|
||||
/// Dump the function profile for \p FName.
|
||||
///
|
||||
|
Loading…
Reference in New Issue
Block a user