Skip to content

Commit 34d0efb

Browse files
committed
clang-format
1 parent 6bd8bd5 commit 34d0efb

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

llvm/lib/Target/RISCV/RISCVISelLowering.cpp

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7298,7 +7298,7 @@ SDValue RISCVTargetLowering::lowerINIT_TRAMPOLINE(SDValue Op,
72987298
// Create an MCCodeEmitter to encode instructions.
72997299
TargetLoweringObjectFile *TLO = getTargetMachine().getObjFileLowering();
73007300
assert(TLO);
7301-
MCContext& MCCtx = TLO->getContext();
7301+
MCContext &MCCtx = TLO->getContext();
73027302

73037303
std::unique_ptr<MCCodeEmitter> CodeEmitter(
73047304
createRISCVMCCodeEmitter(*getTargetMachine().getMCInstrInfo(), MCCtx));
@@ -7356,8 +7356,7 @@ SDValue RISCVTargetLowering::lowerINIT_TRAMPOLINE(SDValue Op,
73567356
Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
73577357
DAG.getConstant(4, dl, MVT::i64));
73587358
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,
73617360
MachinePointerInfo(TrmpAddr, 4), MVT::i32);
73627361

73637362
// ld t2, 16(t2)
@@ -7368,8 +7367,8 @@ SDValue RISCVTargetLowering::lowerINIT_TRAMPOLINE(SDValue Op,
73687367
Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
73697368
DAG.getConstant(8, dl, MVT::i64));
73707369
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);
73737372

73747373
// jalr t0
73757374
// Jump to the function.

0 commit comments

Comments
 (0)