[llvm] [AMDGPU][GFX12] Support disassembling MUBUF instructions with arbitrary FORMAT values. (PR #95243)
Ivan Kosarev via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 12 06:33:29 PDT 2024
================
@@ -2447,7 +2447,13 @@ multiclass VBUFFER_MUBUF_Real_gfx12<bits<8> op, string real_name> {
def _gfx12 : VBUFFER_Real_gfx12<op, ps, real_name> {
// Set the last bit of format to 1 to avoid round-trip issues, as some tools
// print BUF_FMT_INVALID for format 0.
- let Inst{55} = 0b1;
+ let Inst{61-55} = 1;
----------------
kosarev wrote:
Done.
https://github.com/llvm/llvm-project/pull/95243
More information about the llvm-commits
mailing list