@@ -7298,7 +7298,7 @@ SDValue RISCVTargetLowering::lowerINIT_TRAMPOLINE(SDValue Op,
7298
7298
// Create an MCCodeEmitter to encode instructions.
7299
7299
TargetLoweringObjectFile *TLO = getTargetMachine().getObjFileLowering();
7300
7300
assert(TLO);
7301
- MCContext& MCCtx = TLO->getContext();
7301
+ MCContext & MCCtx = TLO->getContext();
7302
7302
7303
7303
std::unique_ptr<MCCodeEmitter> CodeEmitter(
7304
7304
createRISCVMCCodeEmitter(*getTargetMachine().getMCInstrInfo(), MCCtx));
@@ -7356,8 +7356,7 @@ SDValue RISCVTargetLowering::lowerINIT_TRAMPOLINE(SDValue Op,
7356
7356
Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
7357
7357
DAG.getConstant(4, dl, MVT::i64));
7358
7358
OutChains[1] = DAG.getTruncStore(
7359
- Root, dl,
7360
- DAG.getConstant(LD_X5_TargetFunctionOffset, dl, MVT::i64), Addr,
7359
+ Root, dl, DAG.getConstant(LD_X5_TargetFunctionOffset, dl, MVT::i64), Addr,
7361
7360
MachinePointerInfo(TrmpAddr, 4), MVT::i32);
7362
7361
7363
7362
// ld t2, 16(t2)
@@ -7368,8 +7367,8 @@ SDValue RISCVTargetLowering::lowerINIT_TRAMPOLINE(SDValue Op,
7368
7367
Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
7369
7368
DAG.getConstant(8, dl, MVT::i64));
7370
7369
OutChains[2] = DAG.getTruncStore(
7371
- Root, dl, DAG.getConstant(LD_X7_StaticChainOffset, dl, MVT::i64),
7372
- Addr, MachinePointerInfo(TrmpAddr, 8), MVT::i32);
7370
+ Root, dl, DAG.getConstant(LD_X7_StaticChainOffset, dl, MVT::i64), Addr,
7371
+ MachinePointerInfo(TrmpAddr, 8), MVT::i32);
7373
7372
7374
7373
// jalr t0
7375
7374
// Jump to the function.
0 commit comments