From: Bill Wendling Date: Fri, 29 Apr 2011 23:45:22 +0000 (+0000) Subject: Print out the 'nontemporal' info on a store. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d65ba721cccb0d0998750908bf2533e08b106f38;p=oota-llvm.git Print out the 'nontemporal' info on a store. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130562 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp index 0d137ebba23..71df6f8b770 100644 --- a/lib/CodeGen/MachineInstr.cpp +++ b/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; }