1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 10:32:48 +02:00

[NFC] Fix build break by a initializer list converting error

This commit is contained in:
wlei 2021-01-13 14:27:03 -08:00
parent ca3e71391e
commit 593cc2c826

View File

@ -219,7 +219,7 @@ void PseudoProbeDecoder::buildAddress2ProbeMap(const uint8_t *Start,
Index = readUnsignedNumber<uint32_t>();
}
// Switch/add to a new tree node(inlinee)
Cur = Cur->getOrAddNode({Cur->GUID, Index});
Cur = Cur->getOrAddNode(std::make_tuple(Cur->GUID, Index));
// Read guid
Cur->GUID = readUnencodedNumber<uint64_t>();
// Read number of probes in the current node.