From e475eae0fe8a2e81c00c1d6871740d2f0d13400f Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Wed, 6 May 2020 23:39:06 +0200 Subject: [PATCH] r600/sfn: Fix memring print output Signed-off-by: Gert Wollny Reviewed-by: Reviewed-by: Dave Airlie Part-of: --- src/gallium/drivers/r600/sfn/sfn_instruction_export.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.30.2