summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_fs.cpp
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2016-06-26 00:39:32 -0700
committerKenneth Graunke <kenneth@whitecape.org>2016-06-27 16:36:57 -0700
commit034bd2532775a1f7da5379a523621458e273f619 (patch)
treea988bb006148ea1bc912c38f0f2eee080d07ca08 /src/mesa/drivers/dri/i965/brw_fs.cpp
parent7e7e501acf3ea609e3e2e8bb4091a5a20ae3adc2 (diff)
downloadexternal_mesa3d-034bd2532775a1f7da5379a523621458e273f619.zip
external_mesa3d-034bd2532775a1f7da5379a523621458e273f619.tar.gz
external_mesa3d-034bd2532775a1f7da5379a523621458e273f619.tar.bz2
i965: Print EOT in fs_visitor::dump_instruction().
This was useful when debugging the previous commit's issue. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs.cpp')
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp
index a929a20..2f473cc 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs.cpp
@@ -5324,6 +5324,10 @@ fs_visitor::dump_instruction(backend_instruction *be_inst, FILE *file)
fprintf(file, "(mlen: %d) ", inst->mlen);
}
+ if (inst->eot) {
+ fprintf(file, "(EOT) ");
+ }
+
switch (inst->dst.file) {
case VGRF:
fprintf(file, "vgrf%d", inst->dst.nr);