i965/vs: Assert that ir_triop_lrp was lowered.
authorMatt Turner <mattst88@gmail.com>
Tue, 19 Feb 2013 23:57:28 +0000 (15:57 -0800)
committerMatt Turner <mattst88@gmail.com>
Thu, 28 Feb 2013 21:19:00 +0000 (13:19 -0800)
Reviewed-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp

index ae4cf7d..a2bc9f5 100644 (file)
@@ -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;