aco: Print r128/a16 MIMG bits separately.
These both exist since Navi and we can have instructions which are one but not the other. Signed-off-by: Georg Lehmann <dadschoorse@gmail.com> Reviewed-by: Daniel Schürmann <daniel@schuermann.dev> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16969>
This commit is contained in:
@@ -420,8 +420,10 @@ print_instr_format_specific(const Instruction* instr, FILE* output)
|
||||
fprintf(output, " da");
|
||||
if (mimg.lwe)
|
||||
fprintf(output, " lwe");
|
||||
if (mimg.r128 || mimg.a16)
|
||||
fprintf(output, " r128/a16");
|
||||
if (mimg.r128)
|
||||
fprintf(output, " r128");
|
||||
if (mimg.a16)
|
||||
fprintf(output, " a16");
|
||||
if (mimg.d16)
|
||||
fprintf(output, " d16");
|
||||
if (mimg.disable_wqm)
|
||||
|
||||
Reference in New Issue
Block a user