aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2013-02-19 15:57:28 -0800
committerMatt Turner <[email protected]>2013-02-28 13:19:00 -0800
commit428503fcdf4e002dfd2754ccb74e61403eae910f (patch)
tree043ab447975128f4b8a8f8c792e640a4bf7fbf2d /src/mesa
parentf78a7ff6b2ed90896876df7790d4701eb7ba2b8d (diff)
i965/vs: Assert that ir_triop_lrp was lowered.
Reviewed-by: Eric Anholt <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp4
1 files changed, 4 insertions, 0 deletions
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;