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:
Georg Lehmann 2022-06-10 14:44:58 +02:00 committed by Marge Bot
parent 1dd2915298
commit 0ca6653ada

View file

@ -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)