diff options
| author | Chad Rosier <mcrosier@apple.com> | 2012-01-03 23:19:12 +0000 |
|---|---|---|
| committer | Chad Rosier <mcrosier@apple.com> | 2012-01-03 23:19:12 +0000 |
| commit | 6ca97df95114dab32bcddc967aea6cf0473aca70 (patch) | |
| tree | b802c9aa21e736ac24448e6643b66a7d7100c992 | |
| parent | b3512d3a489b93c86e3ae6a663893700925c66a3 (diff) | |
| download | bcm5719-llvm-6ca97df95114dab32bcddc967aea6cf0473aca70.tar.gz bcm5719-llvm-6ca97df95114dab32bcddc967aea6cf0473aca70.zip | |
Fix 80-column violations.
llvm-svn: 147495
| -rw-r--r-- | llvm/lib/Target/X86/X86ISelLowering.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index 74ae8a85bda..e12343ebcf9 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp @@ -7438,9 +7438,9 @@ X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const { } -/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values and -/// take a 2 x i32 value to shift plus a shift amount. -SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const { +/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values +/// and take a 2 x i32 value to shift plus a shift amount. +SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const{ assert(Op.getNumOperands() == 3 && "Not a double-shift!"); EVT VT = Op.getValueType(); unsigned VTBits = VT.getSizeInBits(); @@ -13958,7 +13958,8 @@ static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG, // Bitcast the loaded value to a vector of the original element type, in // the size of the target vector type. - SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, ScalarInVector); + SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, + ScalarInVector); unsigned SizeRatio = RegSz/MemSz; // Redistribute the loaded elements into the different locations. |

