tgsi/dump: print _PRECISE modifier on Instructions

Signed-off-by: Karol Herbst <karolherbst@gmail.com>
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
Karol Herbst 2017-06-23 20:30:21 +02:00 committed by Ilia Mirkin
parent af22adee4f
commit 0341aea2f8

View file

@ -584,6 +584,10 @@ iter_instruction(
TXT( "_SAT" );
}
if (inst->Instruction.Precise) {
TXT( "_PRECISE" );
}
for (i = 0; i < inst->Instruction.NumDstRegs; i++) {
const struct tgsi_full_dst_register *dst = &inst->Dst[i];