summaryrefslogtreecommitdiffstats
path: root/src/panfrost/pandecode/decode.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/pandecode/decode.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/pandecode/decode.c')
-rw-r--r--src/panfrost/pandecode/decode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panfrost/pandecode/decode.c b/src/panfrost/pandecode/decode.c
index 0425e236f7f..0f95b763bcc 100644
--- a/src/panfrost/pandecode/decode.c
+++ b/src/panfrost/pandecode/decode.c
@@ -1871,7 +1871,7 @@ pandecode_shader_disassemble(mali_ptr shader_ptr, int shader_no, int type,
struct midgard_disasm_stats stats;
if (is_bifrost) {
- disassemble_bifrost(code, sz, false);
+ disassemble_bifrost(stdout, code, sz, false);
/* TODO: Extend stats to Bifrost */
stats.texture_count = -128;