@@ -880,34 +880,34 @@ static void printMI(raw_ostream &OS, MFPrintState &State,
880880 // Print any optional symbols attached to this instruction as-if they were
881881 // operands.
882882 if (MCSymbol *PreInstrSymbol = MI.getPreInstrSymbol ()) {
883- OS << LS << " pre-instr-symbol " ;
883+ OS << LS << " pre-instr-symbol " ;
884884 MachineOperand::printSymbol (OS, *PreInstrSymbol);
885885 }
886886 if (MCSymbol *PostInstrSymbol = MI.getPostInstrSymbol ()) {
887- OS << LS << " post-instr-symbol " ;
887+ OS << LS << " post-instr-symbol " ;
888888 MachineOperand::printSymbol (OS, *PostInstrSymbol);
889889 }
890890 if (MDNode *HeapAllocMarker = MI.getHeapAllocMarker ()) {
891- OS << LS << " heap-alloc-marker " ;
891+ OS << LS << " heap-alloc-marker " ;
892892 HeapAllocMarker->printAsOperand (OS, State.MST );
893893 }
894894 if (MDNode *PCSections = MI.getPCSections ()) {
895- OS << LS << " pcsections " ;
895+ OS << LS << " pcsections " ;
896896 PCSections->printAsOperand (OS, State.MST );
897897 }
898898 if (MDNode *MMRA = MI.getMMRAMetadata ()) {
899- OS << LS << " mmra " ;
899+ OS << LS << " mmra " ;
900900 MMRA->printAsOperand (OS, State.MST );
901901 }
902902 if (uint32_t CFIType = MI.getCFIType ())
903- OS << LS << " cfi-type " << CFIType;
903+ OS << LS << " cfi-type " << CFIType;
904904
905905 if (auto Num = MI.peekDebugInstrNum ())
906- OS << LS << " debug-instr-number " << Num;
906+ OS << LS << " debug-instr-number " << Num;
907907
908908 if (PrintLocations) {
909909 if (const DebugLoc &DL = MI.getDebugLoc ()) {
910- OS << LS << " debug-location " ;
910+ OS << LS << " debug-location " ;
911911 DL->printAsOperand (OS, State.MST );
912912 }
913913 }
0 commit comments