From b955eb688da31e85780bae8fc424bb344ef5daee Mon Sep 17 00:00:00 2001 From: Mitch Phillips <31459023+hctim@users.noreply.github.com> Date: Thu, 10 Dec 2020 15:42:38 -0800 Subject: [PATCH] Revert "[NFC] Fix a gcc build break by using an explict constructor." This reverts commit 248b279cf04d9e439a1e426ffd24f2dfa93d02f8. Reason: Dependency of patch that broke the ASan buildbots: http://lab.llvm.org:8011/#/builders/5/builds/2269 --- llvm/lib/MC/MCParser/AsmParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/MC/MCParser/AsmParser.cpp b/llvm/lib/MC/MCParser/AsmParser.cpp index bf50a95..bf2e5d8 100644 --- a/llvm/lib/MC/MCParser/AsmParser.cpp +++ b/llvm/lib/MC/MCParser/AsmParser.cpp @@ -5833,7 +5833,7 @@ bool AsmParser::parseDirectivePseudoProbe() { return true; } - InlineSite Site(CallerGuid, CallerProbeId); + InlineSite Site = {CallerGuid, CallerProbeId}; InlineStack.push_back(Site); } -- 2.7.4