From: Matt Turner Date: Tue, 19 Feb 2013 23:57:28 +0000 (-0800) Subject: i965/vs: Assert that ir_triop_lrp was lowered. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=428503fcdf4e002dfd2754ccb74e61403eae910f;p=mesa.git i965/vs: Assert that ir_triop_lrp was lowered. Reviewed-by: Eric Anholt Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp b/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp index ae4cf7d423b..a2bc9f50a74 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp +++ b/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp @@ -1585,6 +1585,10 @@ vec4_visitor::visit(ir_expression *ir) break; } + case ir_triop_lrp: + assert(!"not reached: should be handled by lrp_to_arith"); + break; + case ir_quadop_vector: assert(!"not reached: should be handled by lower_quadop_vector"); break;