Skip to content
This repository was archived by the owner on Feb 5, 2019. It is now read-only.

Commit b99bafe

Browse files
committed
Fix some 80 column violations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173006 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent b84b423 commit b99bafe

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

lib/Target/X86/X86ISelLowering.cpp

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7508,8 +7508,7 @@ X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
75087508

75097509
SDValue
75107510
X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
7511-
int64_t Offset,
7512-
SelectionDAG &DAG) const {
7511+
int64_t Offset, SelectionDAG &DAG) const {
75137512
// Create the TargetGlobalAddress node, folding in the constant
75147513
// offset if it is legal.
75157514
unsigned char OpFlags =
@@ -7729,7 +7728,7 @@ X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
77297728
case TLSModel::LocalExec:
77307729
return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
77317730
Subtarget->is64Bit(),
7732-
getTargetMachine().getRelocationModel() == Reloc::PIC_);
7731+
getTargetMachine().getRelocationModel() == Reloc::PIC_);
77337732
}
77347733
llvm_unreachable("Unknown TLS model.");
77357734
}
@@ -8108,7 +8107,8 @@ SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
81088107
SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
81098108
"Custom UINT_TO_FP is not supported!");
81108109

8111-
EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32, SVT.getVectorNumElements());
8110+
EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
8111+
SVT.getVectorNumElements());
81128112
return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
81138113
DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
81148114
}
@@ -8201,8 +8201,9 @@ SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
82018201
return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
82028202
}
82038203

8204-
std::pair<SDValue,SDValue> X86TargetLowering::
8205-
FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned, bool IsReplace) const {
8204+
std::pair<SDValue,SDValue>
8205+
X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8206+
bool IsSigned, bool IsReplace) const {
82068207
DebugLoc DL = Op.getDebugLoc();
82078208

82088209
EVT DstTy = Op.getValueType();
@@ -8704,7 +8705,8 @@ static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
87048705

87058706
// LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
87068707
//
8707-
SDValue X86TargetLowering::LowerVectorAllZeroTest(SDValue Op, SelectionDAG &DAG) const {
8708+
SDValue X86TargetLowering::LowerVectorAllZeroTest(SDValue Op,
8709+
SelectionDAG &DAG) const {
87088710
assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
87098711

87108712
if (!Subtarget->hasSSE41())

0 commit comments

Comments
 (0)