forked from OSchip/llvm-project
Print out the 'nontemporal' info on a store.
llvm-svn: 130562
This commit is contained in:
parent
a3e3fded0a
commit
9f638ab181
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue