1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

Adjust debug output for MCRelaxableFragment to include the size so that sanity checking relaxation offsets from -debug output is easier

This commit is contained in:
Philip Reames 2020-03-13 15:54:43 -07:00
parent 5c72beb2cf
commit 987e9d3a05

View File

@ -394,6 +394,7 @@ LLVM_DUMP_METHOD void MCFragment::dump() const {
OS << "\n ";
OS << " Inst:";
F->getInst().dump_pretty(OS);
OS << " (" << F->getContents().size() << " bytes)";
break;
}
case MCFragment::FT_Org: {