mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 09:20:13 +01:00
radeon/llvm: Handle SETGE_INT, SETGE_UINT, and SETGT_UINT opcodes
Support for these was inadvertently dropped in commit
cee23ab246
This commit is contained in:
parent
cc7a6d2691
commit
86dfae1103
1 changed files with 6 additions and 0 deletions
|
|
@ -73,11 +73,17 @@ unsigned R600InstrInfo::getISAOpcode(unsigned opcode) const
|
|||
return AMDIL::SETE_INT;
|
||||
case AMDIL::INE:
|
||||
return AMDIL::SETNE_INT;
|
||||
case AMDIL::IGE:
|
||||
return AMDIL::SETGE_INT;
|
||||
case AMDIL::MOVE_f32:
|
||||
case AMDIL::MOVE_i32:
|
||||
return AMDIL::MOV;
|
||||
case AMDIL::SHR_i32:
|
||||
return getASHRop();
|
||||
case AMDIL::UGE:
|
||||
return AMDIL::SETGE_UINT;
|
||||
case AMDIL::UGT:
|
||||
return AMDIL::SETGT_UINT;
|
||||
case AMDIL::USHR_i32:
|
||||
return getLSHRop();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue