summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/i965/brw_fs.cpp
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2010-09-22 14:58:29 -0700
committerEric Anholt <eric@anholt.net>2010-09-22 14:58:29 -0700
commit03923ff95ed2c1ee54f0132e87e277b6cf07b7f5 (patch)
tree709f0d5d08c9665c1c584f9b0ac585ea3d5b106c /src/mesa/drivers/dri/i965/brw_fs.cpp
parentbb70bd55596fa19f5775bac98bffb567f3ba1d9f (diff)
i965: Warning fix for vector result any_nequal/all_equal change.
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs.cpp')
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp
index cf5c52119a..2b517375eb 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs.cpp
@@ -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: