[AMDGPU] Remove redundant field from DPP8 def

These lines set the value to what it already was,
so they are redundant. NFC

Reviewed By: rampitec

Differential Revision: https://reviews.llvm.org/D100664

Change-Id: Ibf6f27d50a7fa1f76c127f01b799821378bfd3b3
This commit is contained in:
Joe Nash 2021-04-16 13:22:23 -04:00
parent 919236e608
commit a0ed70abde
2 changed files with 0 additions and 5 deletions

View File

@ -525,9 +525,6 @@ class VOP1_DPP8<bits<8> op, VOP1_Pseudo ps, VOPProfile p = ps.Pfl> :
let Inst{16-9} = op;
let Inst{24-17} = !if(p.EmitDst, vdst{7-0}, 0);
let Inst{31-25} = 0x3f;
let AssemblerPredicate = HasDPP8;
let SubtargetPredicate = HasDPP8;
}
//===----------------------------------------------------------------------===//

View File

@ -931,8 +931,6 @@ class VOP2_DPP8<bits<6> op, VOP2_Pseudo ps,
let Inst{30-25} = op;
let Inst{31} = 0x0;
let AssemblerPredicate = HasDPP8;
let SubtargetPredicate = HasDPP8;
let OtherPredicates = ps.OtherPredicates;
}