r600/sfn: Fix memring print output
authorGert Wollny <gert.wollny@collabora.com>
Wed, 6 May 2020 21:39:06 +0000 (23:39 +0200)
committerMarge Bot <eric+marge@anholt.net>
Tue, 19 May 2020 07:52:13 +0000 (07:52 +0000)
Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Reviewed-by: Reviewed-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5085>

src/gallium/drivers/r600/sfn/sfn_instruction_export.cpp

index a841eccdcbbf292d4e1f3271de5b1092415c2134..db24b1d7562c984b6ad67eede6cd009b94ea9b46 100644 (file)
@@ -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)