Print out the 'nontemporal' info on a store.

llvm-svn: 130562
This commit is contained in:
Bill Wendling 2011-04-29 23:45:22 +00:00
parent a3e3fded0a
commit 9f638ab181
1 changed files with 4 additions and 0 deletions

View File

@ -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;
}