@@ -560,7 +560,7 @@ class PrettyPrinter {
560
560
dumpBytes (Bytes, OS);
561
561
}
562
562
if (MI)
563
- IP.printInst (MI, OS , " " , STI);
563
+ IP.printInst (MI, Address. Address , " " , STI, OS );
564
564
else
565
565
OS << " <unknown>" ;
566
566
}
@@ -593,7 +593,7 @@ class HexagonPrettyPrinter : public PrettyPrinter {
593
593
std::string Buffer;
594
594
{
595
595
raw_string_ostream TempStream (Buffer);
596
- IP.printInst (MI, TempStream , " " , STI);
596
+ IP.printInst (MI, Address. Address , " " , STI, TempStream );
597
597
}
598
598
StringRef Contents (Buffer);
599
599
// Split off bundle attributes
@@ -645,7 +645,7 @@ class AMDGCNPrettyPrinter : public PrettyPrinter {
645
645
SmallString<40 > InstStr;
646
646
raw_svector_ostream IS (InstStr);
647
647
648
- IP.printInst (MI, IS , " " , STI);
648
+ IP.printInst (MI, Address. Address , " " , STI, IS );
649
649
650
650
OS << left_justify (IS.str (), 60 )
651
651
<< format (" // %012" PRIX64 " : " , Address.Address );
@@ -677,7 +677,7 @@ class BPFPrettyPrinter : public PrettyPrinter {
677
677
dumpBytes (Bytes, OS);
678
678
}
679
679
if (MI)
680
- IP.printInst (MI, OS , " " , STI);
680
+ IP.printInst (MI, Address. Address , " " , STI, OS );
681
681
else
682
682
OS << " <unknown>" ;
683
683
}
0 commit comments