Change the names of member variables per Chris' instructions, and document
them more clearly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23118 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/lib/CodeGen/SelectionDAG/TargetLowering.cpp
index d3fa34d..3c2a09c 100644
--- a/lib/CodeGen/SelectionDAG/TargetLowering.cpp
+++ b/lib/CodeGen/SelectionDAG/TargetLowering.cpp
@@ -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() {}