[llvm-commits] CVS: llvm/lib/Target/TargetLowering.cpp
Reid Spencer
reid at x10sys.com
Sat Aug 27 12:09:14 PDT 2005
Changes in directory llvm/lib/Target:
TargetLowering.cpp updated: 1.10 -> 1.11
---
Log message:
Change the names of member variables per Chris' instructions, and document
them more clearly.
---
Diffs of the changes: (+2 -2)
TargetLowering.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/lib/Target/TargetLowering.cpp
diff -u llvm/lib/Target/TargetLowering.cpp:1.10 llvm/lib/Target/TargetLowering.cpp:1.11
--- llvm/lib/Target/TargetLowering.cpp:1.10 Wed Aug 24 11:34:12 2005
+++ llvm/lib/Target/TargetLowering.cpp Sat Aug 27 14:09:02 2005
@@ -27,8 +27,8 @@
ShiftAmountTy = SetCCResultTy = PointerTy = getValueType(TD.getIntPtrType());
ShiftAmtHandling = Undefined;
memset(RegClassForVT, 0,MVT::LAST_VALUETYPE*sizeof(TargetRegisterClass*));
- maxStoresPerMemSet = maxStoresPerMemCpy = maxStoresPerMemMove = 0;
- allowUnalignedStores = false;
+ maxStoresPerMemSet = maxStoresPerMemCpy = maxStoresPerMemMove = 8;
+ allowUnalignedMemoryAccesses = false;
}
TargetLowering::~TargetLowering() {}
More information about the llvm-commits
mailing list