Skip to content

Commit a6a3a46

Browse files
committed
formatting
1 parent b26e934 commit a6a3a46

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

llvm/lib/Target/AMDGPU/SIInstrInfo.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2132,8 +2132,7 @@ bool SIInstrInfo::expandPostRAPseudo(MachineInstr &MI) const {
21322132
Register DstHi = RI.getSubReg(Dst, AMDGPU::sub1);
21332133

21342134
const MCInstrDesc &Mov64Desc = get(AMDGPU::V_MOV_B64_e32);
2135-
const TargetRegisterClass *Mov64RC =
2136-
getRegClass(Mov64Desc, /*OpNum=*/0);
2135+
const TargetRegisterClass *Mov64RC = getRegClass(Mov64Desc, /*OpNum=*/0);
21372136

21382137
const MachineOperand &SrcOp = MI.getOperand(1);
21392138
// FIXME: Will this work for 64-bit floating point immediates?
@@ -2149,8 +2148,7 @@ bool SIInstrInfo::expandPostRAPseudo(MachineInstr &MI) const {
21492148
APInt Lo(32, Imm.getLoBits(32).getZExtValue());
21502149
APInt Hi(32, Imm.getHiBits(32).getZExtValue());
21512150
const MCInstrDesc &PkMovDesc = get(AMDGPU::V_PK_MOV_B32);
2152-
const TargetRegisterClass *PkMovRC =
2153-
getRegClass(PkMovDesc, /*OpNum=*/0);
2151+
const TargetRegisterClass *PkMovRC = getRegClass(PkMovDesc, /*OpNum=*/0);
21542152

21552153
if (ST.hasPkMovB32() && Lo == Hi && isInlineConstant(Lo) &&
21562154
PkMovRC->contains(Dst)) {

0 commit comments

Comments
 (0)