From 9f638ab18188a89afbac69b1450944bf686c0df8 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Fri, 29 Apr 2011 23:45:22 +0000 Subject: Print out the 'nontemporal' info on a store. llvm-svn: 130562 --- llvm/lib/CodeGen/MachineInstr.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'llvm/lib/CodeGen/MachineInstr.cpp') diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp index 0d137ebba23..71df6f8b770 100644 --- a/llvm/lib/CodeGen/MachineInstr.cpp +++ b/llvm/lib/CodeGen/MachineInstr.cpp @@ -441,6 +441,10 @@ raw_ostream &llvm::operator<<(raw_ostream &OS, const MachineMemOperand &MMO) { OS << ")"; } + // Print nontemporal info. + if (MMO.isNonTemporal()) + OS << "(nontemporal)"; + return OS; } -- cgit v1.2.3