@@ -7508,8 +7508,7 @@ X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
7508
7508
7509
7509
SDValue
7510
7510
X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
7511
- int64_t Offset,
7512
- SelectionDAG &DAG) const {
7511
+ int64_t Offset, SelectionDAG &DAG) const {
7513
7512
// Create the TargetGlobalAddress node, folding in the constant
7514
7513
// offset if it is legal.
7515
7514
unsigned char OpFlags =
@@ -7729,7 +7728,7 @@ X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
7729
7728
case TLSModel::LocalExec:
7730
7729
return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
7731
7730
Subtarget->is64Bit(),
7732
- getTargetMachine().getRelocationModel() == Reloc::PIC_);
7731
+ getTargetMachine().getRelocationModel() == Reloc::PIC_);
7733
7732
}
7734
7733
llvm_unreachable("Unknown TLS model.");
7735
7734
}
@@ -8108,7 +8107,8 @@ SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8108
8107
SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8109
8108
"Custom UINT_TO_FP is not supported!");
8110
8109
8111
- EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32, SVT.getVectorNumElements());
8110
+ EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
8111
+ SVT.getVectorNumElements());
8112
8112
return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8113
8113
DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8114
8114
}
@@ -8201,8 +8201,9 @@ SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8201
8201
return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
8202
8202
}
8203
8203
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 {
8206
8207
DebugLoc DL = Op.getDebugLoc();
8207
8208
8208
8209
EVT DstTy = Op.getValueType();
@@ -8704,7 +8705,8 @@ static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
8704
8705
8705
8706
// LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
8706
8707
//
8707
- SDValue X86TargetLowering::LowerVectorAllZeroTest(SDValue Op, SelectionDAG &DAG) const {
8708
+ SDValue X86TargetLowering::LowerVectorAllZeroTest(SDValue Op,
8709
+ SelectionDAG &DAG) const {
8708
8710
assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
8709
8711
8710
8712
if (!Subtarget->hasSSE41())
0 commit comments