diff options
author | Chris Lattner <sabre@nondot.org> | 2008-10-28 07:10:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-10-28 07:10:51 +0000 |
commit | 56d016ab05f13033d173a6093535843b02ece0e7 (patch) | |
tree | e614830f55136b7ce493014080f8f9715aa90df9 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | a2422d8f3e44fd112e134f32b861e2a2ab16c128 (diff) | |
download | bcm5719-llvm-56d016ab05f13033d173a6093535843b02ece0e7.tar.gz bcm5719-llvm-56d016ab05f13033d173a6093535843b02ece0e7.zip |
fix some whitespace stuff
llvm-svn: 58319
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 60a7a52ac13..3d809b4983d 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -2834,7 +2834,7 @@ bool MeetsMaxMemopRequirement(std::vector<MVT> &MemOps, isSrcStr = isMemSrcFromString(Src, Str); bool isSrcConst = isa<ConstantSDNode>(Src); bool AllowUnalign = TLI.allowsUnalignedMemoryAccesses(); - MVT VT= TLI.getOptimalMemOpType(Size, Align, isSrcConst, isSrcStr); + MVT VT = TLI.getOptimalMemOpType(Size, Align, isSrcConst, isSrcStr); if (VT != MVT::iAny) { unsigned NewAlign = (unsigned) TLI.getTargetData()->getABITypeAlignment(VT.getTypeForMVT()); @@ -3048,8 +3048,8 @@ static SDValue getMemsetStores(SelectionDAG &DAG, unsigned VTSize = VT.getSizeInBits() / 8; SDValue Value = getMemsetValue(Src, VT, DAG); SDValue Store = DAG.getStore(Chain, Value, - getMemBasePlusOffset(Dst, DstOff, DAG), - DstSV, DstSVOff + DstOff); + getMemBasePlusOffset(Dst, DstOff, DAG), + DstSV, DstSVOff + DstOff); OutChains.push_back(Store); DstOff += VTSize; } |