diff options
author | Vinson Lee <[email protected]> | 2013-08-03 23:58:43 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2013-08-04 13:49:17 -0700 |
commit | 0794f638ee5a38962df94e8e122f41bb03b51222 (patch) | |
tree | 0f3b2d4996fb7d454eb6ae37935d693d41bf1a44 /src/gallium/drivers/r600 | |
parent | 83486d3148f8b8f0ae2679407330c69279f36349 (diff) |
r600g/sb: Dump correct value for CND.
Fixes "Copy-paste error" reported by Coverity.
Signed-off-by: Vinson Lee <[email protected]>
Reviewed-by: Vadim Girlin <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r-- | src/gallium/drivers/r600/sb/sb_bc_dump.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |