Fix a couple of typos in memory intrinsic optimization output (NFC)

s/instrinsic/intrinsic

llvm-svn: 303782
This commit is contained in:
Teresa Johnson 2017-05-24 17:55:25 +00:00
parent 27dd659be1
commit cd2aa0d2e4
3 changed files with 3 additions and 3 deletions

View File

@ -180,7 +180,7 @@ static cl::opt<bool>
static cl::opt<bool> static cl::opt<bool>
PGOInstrMemOP("pgo-instr-memop", cl::init(true), cl::Hidden, PGOInstrMemOP("pgo-instr-memop", cl::init(true), cl::Hidden,
cl::desc("Use this option to turn on/off " 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. // Command line option to turn on CFG dot dump after profile annotation.
// Defined in Analysis/BlockFrequencyInfo.cpp: -pgo-view-counts // Defined in Analysis/BlockFrequencyInfo.cpp: -pgo-view-counts

View File

@ -67,7 +67,7 @@ ic2:20000
7:33 7:33
8:22 8:22
#MEMOP: Memory Instrinsic Size Results: #MEMOP: Memory Intrinsic Size Results:
#MEMOP-NEXT: [ 0, 1, 99 ] #MEMOP-NEXT: [ 0, 1, 99 ]
#MEMOP-NEXT: [ 0, 2, 88 ] #MEMOP-NEXT: [ 0, 2, 88 ]
#MEMOP-NEXT: [ 0, 3, 77 ] #MEMOP-NEXT: [ 0, 3, 77 ]

View File

@ -572,7 +572,7 @@ static int showInstrProfile(const std::string &Filename, bool ShowCounts,
} }
if (ShowMemOPSizes && NumMemOPCalls > 0) { if (ShowMemOPSizes && NumMemOPCalls > 0) {
OS << " Memory Instrinsic Size Results:\n"; OS << " Memory Intrinsic Size Results:\n";
traverseAllValueSites(Func, IPVK_MemOPSize, VPStats[IPVK_MemOPSize], OS, traverseAllValueSites(Func, IPVK_MemOPSize, VPStats[IPVK_MemOPSize], OS,
nullptr); nullptr);
} }