mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 03:08:05 +02:00
r600/sfn: Fix memring print output
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>
This commit is contained in:
parent
13bb0a9701
commit
e475eae0fe
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue