i965/vs: Assert that ir_triop_lrp was lowered.

Reviewed-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Matt Turner 2013-02-19 15:57:28 -08:00
parent f78a7ff6b2
commit 428503fcdf

View 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;