mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-27 05:32:22 +00:00
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
This commit is contained in:
parent
b2b03fc2fa
commit
d65ba721cc
@ -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…
x
Reference in New Issue
Block a user