mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 11:00:11 +01:00
i965: ir: dump floats as %-g rather than %f, so we can see denormals
Signed-off-by: Chris Forbes <chrisf@ijw.co.nz> Reviewed-by: Ben Widawsky <benjamin.widawsky@intel.com>
This commit is contained in:
parent
9f36070c2f
commit
a2c8b5ece5
1 changed files with 1 additions and 1 deletions
|
|
@ -4739,7 +4739,7 @@ fs_visitor::dump_instruction(backend_instruction *be_inst, FILE *file)
|
|||
case IMM:
|
||||
switch (inst->src[i].type) {
|
||||
case BRW_REGISTER_TYPE_F:
|
||||
fprintf(file, "%ff", inst->src[i].f);
|
||||
fprintf(file, "%-gf", inst->src[i].f);
|
||||
break;
|
||||
case BRW_REGISTER_TYPE_W:
|
||||
case BRW_REGISTER_TYPE_D:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue