File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff 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)) {
You can’t perform that action at this time.
0 commit comments