Fix build with gcc. This has a -Wsequence-point error on 'MII', which is a good point.
authorNick Lewycky <nicholas@mxc.ca>
Fri, 20 Feb 2015 07:17:40 +0000 (07:17 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Fri, 20 Feb 2015 07:17:40 +0000 (07:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229979 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp

index 2ece39a73f678199fb8b55551a9bc0a8026490ce..c95777e40d1b7c993c2cc3d35a15927f2eee1da9 100644 (file)
@@ -152,11 +152,9 @@ void AsmPrinter::EmitInlineAsm(StringRef Str, const MDNode *LocMDNode,
   // We may create a new MCInstrInfo here since we might be at the module level
   // and not have a MachineFunction to initialize the TargetInstrInfo from and
   // we only need MCInstrInfo for asm parsing.
-  const MCInstrInfo *MII = MF
-                               ? MII = static_cast<const MCInstrInfo *>(
-                                     MF->getSubtarget().getInstrInfo())
-                               : MII = static_cast<const MCInstrInfo *>(
-                                     TM.getTarget().createMCInstrInfo());
+  const MCInstrInfo *MII =
+      MF ? static_cast<const MCInstrInfo *>(MF->getSubtarget().getInstrInfo())
+         : static_cast<const MCInstrInfo *>(TM.getTarget().createMCInstrInfo());
   std::unique_ptr<MCTargetAsmParser> TAP(TM.getTarget().createMCAsmParser(
       *STI, *Parser, *MII, TM.Options.MCOptions));
   if (!TAP)