[llvm-branch-commits] [clang] [llvm] [AMDGPU] Add s_setprio_inc_wg gfx1250 instruction (PR #145152)

Stanislav Mekhanoshin via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Sat Jun 21 17:03:55 PDT 2025


================
@@ -9669,6 +9670,9 @@ int SIInstrInfo::pseudoToMCOpcode(int Opcode) const {
 
   int MCOp = AMDGPU::getMCOpcode(Opcode, Gen);
 
+  if (MCOp == (uint16_t)-1 && ST.hasGFX1250Insts())
----------------
rampitec wrote:

0xffffffff means it is already a real opcode. 0xffff means it is not found in the subtarget column.

https://github.com/llvm/llvm-project/pull/145152


More information about the llvm-branch-commits mailing list