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

[NFC] Fix a gcc build break by using an explict constructor.

This commit is contained in:
Hongtao Yu 2020-12-10 11:20:46 -08:00
parent 8a1d1a744b
commit 9f85e62b52

View File

@ -5833,7 +5833,7 @@ bool AsmParser::parseDirectivePseudoProbe() {
return true;
}
InlineSite Site = {CallerGuid, CallerProbeId};
InlineSite Site(CallerGuid, CallerProbeId);
InlineStack.push_back(Site);
}