Skip to content

Commit 215597b

Browse files
committed
clang-format
1 parent ca45c15 commit 215597b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/Target/RISCV/RISCVISelLowering.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7497,8 +7497,8 @@ SDValue RISCVTargetLowering::lowerINIT_TRAMPOLINE(SDValue Op,
74977497
// Store encoded instructions.
74987498
for (auto [Idx, Encoding] : llvm::enumerate(Encodings)) {
74997499
SDValue Addr = Idx > 0 ? DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
7500-
DAG.getConstant(Idx * 4, dl, MVT::i64))
7501-
: Trmp;
7500+
DAG.getConstant(Idx * 4, dl, MVT::i64))
7501+
: Trmp;
75027502
OutChains[Idx] = DAG.getTruncStore(
75037503
Root, dl, DAG.getConstant(Encoding, dl, MVT::i64), Addr,
75047504
MachinePointerInfo(TrmpAddr, Idx * 4), MVT::i32);
@@ -7510,7 +7510,7 @@ SDValue RISCVTargetLowering::lowerINIT_TRAMPOLINE(SDValue Op,
75107510

75117511
// Store the given static chain in the trampoline buffer.
75127512
SDValue Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
7513-
DAG.getConstant(StaticChainOffset, dl, MVT::i64));
7513+
DAG.getConstant(StaticChainOffset, dl, MVT::i64));
75147514
OutChains[4] = DAG.getStore(Root, dl, StaticChain, Addr,
75157515
MachinePointerInfo(TrmpAddr, StaticChainOffset));
75167516

0 commit comments

Comments
 (0)