[ThinLTO] Change parameter type. NFC

Change destination module type for consistency with r345118

llvm-svn: 345124
This commit is contained in:
Eugene Leviant 2018-10-24 08:59:58 +00:00
parent c523036fd2
commit 9465a1a580
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ void ModuleSummaryIndex::exportToDot(raw_ostream& OS) const {
};
auto DrawEdge = [&](const char *Pfx, uint64_t SrcMod, GlobalValue::GUID SrcId,
int DstMod, GlobalValue::GUID DstId, int TypeOrHotness) {
uint64_t DstMod, GlobalValue::GUID DstId, int TypeOrHotness) {
// 0 corresponds to alias edge, 1 to ref edge, 2 to call with unknown
// hotness, ...
TypeOrHotness += 2;