Module: Mesa
Branch: master
Commit: 428503fcdf4e002dfd2754ccb74e61403eae910f
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=428503fcdf4e002dfd2754ccb74e61403eae910f

Author: Matt Turner <[email protected]>
Date:   Tue Feb 19 15:57:28 2013 -0800

i965/vs: Assert that ir_triop_lrp was lowered.

Reviewed-by: Eric Anholt <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>

---

 src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp |    4 ++++
 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 ae4cf7d..a2bc9f5 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;

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to