diff options
Diffstat (limited to 'llvm/lib/CodeGen/MIRPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MIRPrinter.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/MIRPrinter.cpp b/llvm/lib/CodeGen/MIRPrinter.cpp index a166dd58fe4..c84cec9ed2e 100644 --- a/llvm/lib/CodeGen/MIRPrinter.cpp +++ b/llvm/lib/CodeGen/MIRPrinter.cpp @@ -655,6 +655,8 @@ void MIPrinter::print(const MachineMemOperand &Op) { // TODO: Print operand's other flags. if (Op.isVolatile()) OS << "volatile "; + if (Op.isNonTemporal()) + OS << "non-temporal "; if (Op.isLoad()) OS << "load "; else { |