1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Fix variable name /NFC

llvm-svn: 294090
This commit is contained in:
Xinliang David Li 2017-02-04 07:40:43 +00:00
parent 433f6468e3
commit d627d6e702

View File

@ -1371,8 +1371,8 @@ template <> struct DOTGraphTraits<PGOUseFunc *> : DefaultDOTGraphTraits {
// Display scaled counts for SELECT instruction:
OS << "SELECT : { T = ";
uint64_t TC, FC;
bool hasProf = I->extractProfMetadata(TC, FC);
if (!hasProf)
bool HasProf = I->extractProfMetadata(TC, FC);
if (!HasProf)
OS << "Unknown, F = Unknown }\\l";
else
OS << TC << ", F = " << FC << " }\\l";