Module: Mesa Branch: master Commit: 0af614727ac04c89b94d3572692c5315664083c1 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=0af614727ac04c89b94d3572692c5315664083c1
Author: Eric Anholt <[email protected]> Date: Tue May 21 17:39:58 2013 -0700 i965: Shut up more compiler warnings from vector insert/extract changes. Reviewed-by: Ian Romanick <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]> --- src/mesa/drivers/dri/i965/brw_fs_visitor.cpp | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp index b7bbaab..36d9cf0 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp @@ -493,6 +493,14 @@ fs_visitor::visit(ir_expression *ir) assert(!"not reached: should be handled by lower_quadop_vector"); break; + case ir_binop_vector_extract: + assert(!"not reached: should be handled by lower_vec_index_to_cond_assign()"); + break; + + case ir_triop_vector_insert: + assert(!"not reached: should be handled by lower_vector_insert()"); + break; + case ir_unop_sqrt: emit_math(SHADER_OPCODE_SQRT, this->result, op[0]); break; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
