aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/r600/sfn/sfn_instruction_export.cpp
diff options
context:
space:
mode:
authorGert Wollny <[email protected]>2020-05-06 23:39:06 +0200
committerMarge Bot <[email protected]>2020-05-19 07:52:13 +0000
commite475eae0fe8a2e81c00c1d6871740d2f0d13400f (patch)
tree98d03fad04e92753a5ede6bfe335346b144a74b2 /src/gallium/drivers/r600/sfn/sfn_instruction_export.cpp
parent13bb0a97012bb017c5d754d0c55ed0d1d513b264 (diff)
r600/sfn: Fix memring print output
Signed-off-by: Gert Wollny <[email protected]> Reviewed-by: Reviewed-by: Dave Airlie <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5085>
Diffstat (limited to 'src/gallium/drivers/r600/sfn/sfn_instruction_export.cpp')
-rw-r--r--src/gallium/drivers/r600/sfn/sfn_instruction_export.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/sfn/sfn_instruction_export.cpp b/src/gallium/drivers/r600/sfn/sfn_instruction_export.cpp
index a841eccdcbb..db24b1d7562 100644
--- a/src/gallium/drivers/r600/sfn/sfn_instruction_export.cpp
+++ b/src/gallium/drivers/r600/sfn/sfn_instruction_export.cpp
@@ -295,7 +295,7 @@ bool MemRingOutIntruction::is_equal_to(const Instruction& lhs) const
static const char *write_type_str[4] = {"WRITE", "WRITE_IDX", "WRITE_ACK", "WRITE_IDX_ACK" };
void MemRingOutIntruction::do_print(std::ostream& os) const
{
- os << "MEM_RING" << m_ring_op;
+ os << "MEM_RING " << m_ring_op;
os << " " << write_type_str[m_type] << " " << m_base_address;
os << " " << gpr();
if (m_type == mem_write_ind || m_type == mem_write_ind_ack)