Skip to content

Commit 82367f4

Browse files
committed
clang-format
1 parent 5e3ce76 commit 82367f4

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
@@ -7434,7 +7434,7 @@ SDValue RISCVTargetLowering::lowerINIT_TRAMPOLINE(SDValue Op,
74347434
// Create an MCCodeEmitter to encode instructions.
74357435
TargetLoweringObjectFile *TLO = getTargetMachine().getObjFileLowering();
74367436
assert(TLO);
7437-
MCContext& MCCtx = TLO->getContext();
7437+
MCContext &MCCtx = TLO->getContext();
74387438

74397439
std::unique_ptr<MCCodeEmitter> CodeEmitter(
74407440
createRISCVMCCodeEmitter(*getTargetMachine().getMCInstrInfo(), MCCtx));
@@ -7492,8 +7492,7 @@ SDValue RISCVTargetLowering::lowerINIT_TRAMPOLINE(SDValue Op,
74927492
Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
74937493
DAG.getConstant(4, dl, MVT::i64));
74947494
OutChains[1] = DAG.getTruncStore(
7495-
Root, dl,
7496-
DAG.getConstant(LD_X5_TargetFunctionOffset, dl, MVT::i64), Addr,
7495+
Root, dl, DAG.getConstant(LD_X5_TargetFunctionOffset, dl, MVT::i64), Addr,
74977496
MachinePointerInfo(TrmpAddr, 4), MVT::i32);
74987497

74997498
// ld t2, 16(t2)
@@ -7504,8 +7503,8 @@ SDValue RISCVTargetLowering::lowerINIT_TRAMPOLINE(SDValue Op,
75047503
Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
75057504
DAG.getConstant(8, dl, MVT::i64));
75067505
OutChains[2] = DAG.getTruncStore(
7507-
Root, dl, DAG.getConstant(LD_X7_StaticChainOffset, dl, MVT::i64),
7508-
Addr, MachinePointerInfo(TrmpAddr, 8), MVT::i32);
7506+
Root, dl, DAG.getConstant(LD_X7_StaticChainOffset, dl, MVT::i64), Addr,
7507+
MachinePointerInfo(TrmpAddr, 8), MVT::i32);
75097508

75107509
// jalr t0
75117510
// Jump to the function.

0 commit comments

Comments
 (0)