ARM label operands can be quoted.
[oota-llvm.git] / lib / CodeGen / ExpandISelPseudos.cpp
index ebc2fc91efa3cdb0c70d54d6c5aec89879d372cf..a67140ece4a5259d08afb6b336fc7cd7e098b40b 100644 (file)
@@ -62,8 +62,8 @@ bool ExpandISelPseudos::runOnMachineFunction(MachineFunction &MF) {
       MachineInstr *MI = MBBI++;
 
       // If MI is a pseudo, expand it.
-      const TargetInstrDesc &TID = MI->getDesc();
-      if (TID.usesCustomInsertionHook()) {
+      const MCInstrDesc &MCID = MI->getDesc();
+      if (MCID.usesCustomInsertionHook()) {
         Changed = true;
         MachineBasicBlock *NewMBB =
           TLI->EmitInstrWithCustomInserter(MI, MBB);