diff options
author | Vinson Lee <[email protected]> | 2013-10-18 19:15:37 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2013-10-20 00:38:40 -0700 |
commit | c325aa5d803368adff6db20cebad7d5ab23f6eb1 (patch) | |
tree | 52f103f90008ec7bedcbd07b7f1d005b6ec54f15 /src/gallium/drivers/r600/sb | |
parent | 00b5d8aeae91c2626105e418e0aaa3843d745ad0 (diff) |
r600g/sb: Initialize shader::dce_flags.
Fixes "Uninitialized scalar field" defect reported by Coverity.
Signed-off-by: Vinson Lee <[email protected]>
Reviewed-by: Vadim Girlin <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/sb')
-rw-r--r-- | src/gallium/drivers/r600/sb/sb_shader.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/sb/sb_shader.cpp b/src/gallium/drivers/r600/sb/sb_shader.cpp index 98e52b16e0e..38617a85330 100644 --- a/src/gallium/drivers/r600/sb/sb_shader.cpp +++ b/src/gallium/drivers/r600/sb/sb_shader.cpp @@ -39,7 +39,8 @@ shader::shader(sb_context &sctx, shader_target t, unsigned id) coal(*this), bbs(), target(t), vt(ex), ex(*this), root(), compute_interferences(), - has_alu_predication(), uses_gradients(), safe_math(), ngpr(), nstack() {} + has_alu_predication(), + uses_gradients(), safe_math(), ngpr(), nstack(), dce_flags() {} bool shader::assign_slot(alu_node* n, alu_node *slots[5]) { |