Skip to content

Commit

Permalink
Revert "[NFC] Fix a gcc build break by not using an initializer."
Browse files Browse the repository at this point in the history
This reverts commit 1dc0a85.

Reason: Dependency of patch that broke the ASan buildbots:
  http://lab.llvm.org:8011/#/builders/5/builds/2269
  • Loading branch information
hctim committed Dec 10, 2020
1 parent cd5855a commit 9aafa9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/lib/CodeGen/AsmPrinter/PseudoProbePrinter.cpp
Expand Up @@ -62,7 +62,7 @@ void PseudoProbeHandler::emitPseudoProbe(uint64_t Guid, uint64_t Index,
uint64_t CallerGuid = Names[Name];
uint64_t CallerProbeId = PseudoProbeDwarfDiscriminator::extractProbeIndex(
InlinedAt->getDiscriminator());
ReversedInlineStack.emplace_back(CallerGuid, CallerProbeId);
ReversedInlineStack.push_back({CallerGuid, CallerProbeId});
InlinedAt = InlinedAt->getInlinedAt();
}

Expand Down

0 comments on commit 9aafa9f

Please sign in to comment.