nir: print nir_io_semantics::invariant

this was missing

Reviewed-by: Konstantin Seurer <konstantin.seurer@gmail.com>
Reviewed-by: Timur Kristóf <timur.kristof@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28049>
This commit is contained in:
Marek Olšák
2024-03-09 12:28:35 -05:00
committed by Marge Bot
parent 867a0a7db9
commit 936690f733

View File

@@ -1384,6 +1384,9 @@ print_intrinsic_instr(nir_intrinsic_instr *instr, print_state *state)
if (io.high_16bits) if (io.high_16bits)
fprintf(fp, " high_16bits"); fprintf(fp, " high_16bits");
if (io.invariant)
fprintf(fp, " invariant");
if (io.high_dvec2) if (io.high_dvec2)
fprintf(fp, " high_dvec2"); fprintf(fp, " high_dvec2");