From: Vinson Lee Date: Sun, 4 Aug 2013 06:58:43 +0000 (-0700) Subject: r600g/sb: Dump correct value for CND. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0794f638ee5a38962df94e8e122f41bb03b51222;p=mesa.git r600g/sb: Dump correct value for CND. Fixes "Copy-paste error" reported by Coverity. Signed-off-by: Vinson Lee Reviewed-by: Vadim Girlin --- diff --git a/src/gallium/drivers/r600/sb/sb_bc_dump.cpp b/src/gallium/drivers/r600/sb/sb_bc_dump.cpp index 9d76465b36f..9b1420d3895 100644 --- a/src/gallium/drivers/r600/sb/sb_bc_dump.cpp +++ b/src/gallium/drivers/r600/sb/sb_bc_dump.cpp @@ -174,7 +174,7 @@ void bc_dump::dump(cf_node& n) { } if (n.bc.cond) - s << " CND:" << n.bc.pop_count; + s << " CND:" << n.bc.cond; if (n.bc.pop_count) s << " POP:" << n.bc.pop_count;