i965: Warning fix for vector result any_nequal/all_equal change.
authorEric Anholt <eric@anholt.net>
Wed, 22 Sep 2010 21:58:29 +0000 (14:58 -0700)
committerEric Anholt <eric@anholt.net>
Wed, 22 Sep 2010 21:58:29 +0000 (14:58 -0700)
src/mesa/drivers/dri/i965/brw_fs.cpp

index cf5c521..2b51737 100644 (file)
@@ -750,7 +750,9 @@ fs_visitor::visit(ir_expression *ir)
    case ir_binop_dot:
    case ir_binop_cross:
    case ir_unop_any:
-      assert(!"not reached: should be handled by brw_channel_expressions");
+   case ir_binop_all_equal:
+   case ir_binop_any_nequal:
+      assert(!"not reached: should be handled by brw_fs_channel_expressions");
       break;
 
    case ir_unop_noise: