diff options
author | Nadav Rotem <nrotem@apple.com> | 2012-12-28 07:28:43 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2012-12-28 07:28:43 +0000 |
commit | 40ef8b75487ad9f98a93b1dbf283a25658ef8a1e (patch) | |
tree | 1685adc64ac0a8f4346c69070758ea452da37bf9 | |
parent | 0509db27386f5cafffd364618365ecda741cf0bd (diff) | |
download | external_llvm-40ef8b75487ad9f98a93b1dbf283a25658ef8a1e.zip external_llvm-40ef8b75487ad9f98a93b1dbf283a25658ef8a1e.tar.gz external_llvm-40ef8b75487ad9f98a93b1dbf283a25658ef8a1e.tar.bz2 |
wrap 80-col lines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171179 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86ISelLowering.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index ca86f66..e5122ab 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -8348,7 +8348,8 @@ SDValue X86TargetLowering::LowerANY_EXTEND(SDValue Op, return SDValue(); } -SDValue X86TargetLowering::LowerZERO_EXTEND(SDValue Op, SelectionDAG &DAG) const { +SDValue X86TargetLowering::LowerZERO_EXTEND(SDValue Op, + SelectionDAG &DAG) const { DebugLoc DL = Op.getDebugLoc(); EVT VT = Op.getValueType(); SDValue In = Op.getOperand(0); @@ -8373,7 +8374,9 @@ SDValue X86TargetLowering::LowerZERO_EXTEND(SDValue Op, SelectionDAG &DAG) const SDValue Lo = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32, In); static const int Mask[] = {4, 5, 6, 7, -1, -1, -1, -1}; SDValue Hi = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32, - DAG.getVectorShuffle(MVT::v8i16, DL, In, DAG.getUNDEF(MVT::v8i16), &Mask[0])); + DAG.getVectorShuffle(MVT::v8i16, DL, In, + DAG.getUNDEF(MVT::v8i16), + &Mask[0])); return DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v8i32, Lo, Hi); } |