forked from OSchip/llvm-project
Fix a couple of typos in memory intrinsic optimization output (NFC)
s/instrinsic/intrinsic llvm-svn: 303782
This commit is contained in:
parent
27dd659be1
commit
cd2aa0d2e4
|
@ -180,7 +180,7 @@ static cl::opt<bool>
|
|||
static cl::opt<bool>
|
||||
PGOInstrMemOP("pgo-instr-memop", cl::init(true), cl::Hidden,
|
||||
cl::desc("Use this option to turn on/off "
|
||||
"memory instrinsic size profiling."));
|
||||
"memory intrinsic size profiling."));
|
||||
|
||||
// Command line option to turn on CFG dot dump after profile annotation.
|
||||
// Defined in Analysis/BlockFrequencyInfo.cpp: -pgo-view-counts
|
||||
|
|
|
@ -67,7 +67,7 @@ ic2:20000
|
|||
7:33
|
||||
8:22
|
||||
|
||||
#MEMOP: Memory Instrinsic Size Results:
|
||||
#MEMOP: Memory Intrinsic Size Results:
|
||||
#MEMOP-NEXT: [ 0, 1, 99 ]
|
||||
#MEMOP-NEXT: [ 0, 2, 88 ]
|
||||
#MEMOP-NEXT: [ 0, 3, 77 ]
|
||||
|
|
|
@ -572,7 +572,7 @@ static int showInstrProfile(const std::string &Filename, bool ShowCounts,
|
|||
}
|
||||
|
||||
if (ShowMemOPSizes && NumMemOPCalls > 0) {
|
||||
OS << " Memory Instrinsic Size Results:\n";
|
||||
OS << " Memory Intrinsic Size Results:\n";
|
||||
traverseAllValueSites(Func, IPVK_MemOPSize, VPStats[IPVK_MemOPSize], OS,
|
||||
nullptr);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue