mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-15 15:20:31 +01:00
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:
parent
af22adee4f
commit
0341aea2f8
1 changed files with 4 additions and 0 deletions
|
|
@ -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];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue