[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
Evan Cheng
evan.cheng at apple.com
Tue Feb 14 00:38:48 PST 2006
Changes in directory llvm/lib/CodeGen/SelectionDAG:
SelectionDAGISel.cpp updated: 1.154 -> 1.155
---
Log message:
Rename maxStoresPerMemSet to maxStoresPerMemset, etc.
---
Diffs of the changes: (+1 -1)
SelectionDAGISel.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.154 llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.155
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.154 Tue Feb 14 02:22:34 2006
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp Tue Feb 14 02:38:30 2006
@@ -1626,7 +1626,7 @@
switch (Op) {
default: ; // Do nothing for now.
case ISD::MEMSET: {
- if (NumMemOps <= TLI.getMaxStoresPerMemSet()) {
+ if (NumMemOps <= TLI.getMaxStoresPerMemset()) {
unsigned Offset = 0;
for (unsigned i = 0; i < NumMemOps; i++) {
MVT::ValueType VT = MemOps[i];
More information about the llvm-commits
mailing list