forked from OSchip/llvm-project
[NFC] Fix a gcc build break by using an explict constructor.
This commit is contained in:
parent
57db6d20c6
commit
248b279cf0
|
@ -5833,7 +5833,7 @@ bool AsmParser::parseDirectivePseudoProbe() {
|
|||
return true;
|
||||
}
|
||||
|
||||
InlineSite Site = {CallerGuid, CallerProbeId};
|
||||
InlineSite Site(CallerGuid, CallerProbeId);
|
||||
InlineStack.push_back(Site);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue