diff options
author | Alex Lorenz <arphaman@gmail.com> | 2015-08-07 20:26:52 +0000 |
---|---|---|
committer | Alex Lorenz <arphaman@gmail.com> | 2015-08-07 20:26:52 +0000 |
commit | 83127739ff89d3e689b8c15bacf538331b960039 (patch) | |
tree | 4e8b4917af46e2bf82eca54dcb56be0949f8080b /llvm/lib/CodeGen/MIRPrinter.cpp | |
parent | dc24c1713e87dc6561ac01e36e54ff4bf924d8f4 (diff) | |
download | bcm5719-llvm-83127739ff89d3e689b8c15bacf538331b960039.tar.gz bcm5719-llvm-83127739ff89d3e689b8c15bacf538331b960039.zip |
MIR Serialization: Serialize the offsets for the machine memory operands.
llvm-svn: 244356
Diffstat (limited to 'llvm/lib/CodeGen/MIRPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MIRPrinter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/MIRPrinter.cpp b/llvm/lib/CodeGen/MIRPrinter.cpp index e162a8f73e2..4710f168d3a 100644 --- a/llvm/lib/CodeGen/MIRPrinter.cpp +++ b/llvm/lib/CodeGen/MIRPrinter.cpp @@ -678,6 +678,7 @@ void MIPrinter::print(const MachineMemOperand &Op) { if (const Value *Val = Op.getValue()) printIRValueReference(*Val); // TODO: Print PseudoSourceValue. + printOffset(Op.getOffset()); // TODO: Print the base alignment. // TODO: Print the metadata attributes. OS << ')'; |