projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b2b03fc
)
Print out the 'nontemporal' info on a store.
author
Bill Wendling
<isanbard@gmail.com>
Fri, 29 Apr 2011 23:45:22 +0000
(23:45 +0000)
committer
Bill Wendling
<isanbard@gmail.com>
Fri, 29 Apr 2011 23:45:22 +0000
(23:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130562
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/MachineInstr.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/MachineInstr.cpp
b/lib/CodeGen/MachineInstr.cpp
index 0d137ebba230df90161987605c84d41488902dc5..71df6f8b7701c1cdcf2eb9fc483fd6cdfebcfcb1 100644
(file)
--- 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;
}