Revert "[NFC] Fix a gcc build break by using an explict constructor."
authorMitch Phillips <31459023+hctim@users.noreply.github.com>
Thu, 10 Dec 2020 23:42:38 +0000 (15:42 -0800)
committerMitch Phillips <31459023+hctim@users.noreply.github.com>
Thu, 10 Dec 2020 23:53:38 +0000 (15:53 -0800)
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

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