Skip to content

Commit 9bd38bf

Browse files
authored
[AVR][NFC] Improve format of TD files (llvm#139249)
1 parent 143cce7 commit 9bd38bf

File tree

6 files changed

+162
-315
lines changed

6 files changed

+162
-315
lines changed

llvm/lib/Target/AVR/AVRISelDAGToDAG.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,8 +413,7 @@ template <> bool AVRDAGToDAGISel::select<ISD::LOAD>(SDNode *N) {
413413
case MVT::i8:
414414
if (ProgMemBank == 0) {
415415
unsigned Opc = Subtarget->hasLPMX() ? AVR::LPMRdZ : AVR::LPMBRdZ;
416-
ResNode =
417-
CurDAG->getMachineNode(Opc, DL, MVT::i8, MVT::Other, Ptr);
416+
ResNode = CurDAG->getMachineNode(Opc, DL, MVT::i8, MVT::Other, Ptr);
418417
} else {
419418
// Do not combine the LDI instruction into the ELPM pseudo instruction,
420419
// since it may be reused by other ELPM pseudo instructions.

0 commit comments

Comments
 (0)