1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

[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 375b47405c
commit 91857d1ecd

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;