MIR Serialization: Serialize the frame setup machine instruction flag.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@242491 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Alex Lorenz
2015-07-17 00:24:15 +00:00
parent ed2032f17a
commit 2744189c46
5 changed files with 54 additions and 6 deletions

View File

@ -334,8 +334,10 @@ void MIPrinter::print(const MachineInstr &MI) {
if (I)
OS << " = ";
if (MI.getFlag(MachineInstr::FrameSetup))
OS << "frame-setup ";
OS << TII->getName(MI.getOpcode());
// TODO: Print the instruction flags, machine mem operands.
// TODO: Print the bundling instruction flags, machine mem operands.
if (I < E)
OS << ' ';