aboutsummaryrefslogtreecommitdiffstats
path: root/src/panfrost/bifrost/bifrost_compile.c
diff options
context:
space:
mode:
authorIcecream95 <[email protected]>2020-01-23 09:59:57 +1300
committerMarge Bot <[email protected]>2020-01-23 20:46:38 +0000
commit20a89573972bceb43c95b88ce16ea559ed7fde44 (patch)
tree364470945f1a2cd4eb5edd9acb3e8041c4da1a4d /src/panfrost/bifrost/bifrost_compile.c
parent968f36d1fc081baf2e95eef1410b06552845440b (diff)
pan/bifrost: Support disassembling to a file
Reviewed-by: Alyssa Rosenzweig <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3525>
Diffstat (limited to 'src/panfrost/bifrost/bifrost_compile.c')
-rw-r--r--src/panfrost/bifrost/bifrost_compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panfrost/bifrost/bifrost_compile.c b/src/panfrost/bifrost/bifrost_compile.c
index abc981d87bb..7dc2ec32bc3 100644
--- a/src/panfrost/bifrost/bifrost_compile.c
+++ b/src/panfrost/bifrost/bifrost_compile.c
@@ -1045,7 +1045,7 @@ bifrost_compile_shader_nir(nir_shader *nir, struct bifrost_program *program)
#ifdef BI_DEBUG
nir_print_shader(nir, stdout);
- disassemble_bifrost(program->compiled.data, program->compiled.size, false);
+ disassemble_bifrost(stdout, program->compiled.data, program->compiled.size, false);
#endif
return 0;
}