[PATCH] D134078: [AMDGPU] Fix useDeprecatedPositionallyEncodedOperands errors in R600.

James Y Knight via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Sep 19 16:18:55 PDT 2022


jyknight added inline comments.


================
Comment at: llvm/lib/Target/AMDGPU/R600Instructions.td:652-653
   field bits<8> Inst;
-  bits<8> num;
-  let Inst = num;
+  bits<8> addr;
+  let Inst = addr;
   let isCodeGenOnly = 1;
----------------
arsenm wrote:
> Why did this need to be renamed?
To match the "addr" in the `(ins i32imm:$addr)` operand.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D134078/new/

https://reviews.llvm.org/D134078



More information about the llvm-commits mailing list