<div dir="auto"><span style="font-family:sans-serif;font-size:11.008px">Reviewed-by: Marek Olšák <</span><a href="mailto:marek.olsak@amd.com" style="text-decoration:none;color:rgb(66,133,244);font-family:sans-serif;font-size:11.008px">marek.olsak@amd.com</a><span style="font-family:sans-serif;font-size:11.008px">></span></div><div class="gmail_extra"><br><div class="gmail_quote">On Jan 26, 2017 2:22 PM, "Emil Velikov" <<a href="mailto:emil.l.velikov@gmail.com">emil.l.velikov@gmail.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">From: Emil Velikov <<a href="mailto:emil.velikov@collabora.com">emil.velikov@collabora.com</a>><br>
<br>
Follow the approach set in the file and handle all the ops, as otherwise<br>
the compiler throws a bunch of lovely warnings.<br>
<br>
Note that some versions of GCC have -Wswitch implied by -Wall, latter of<br>
which set in out autoconf and scons builds.<br>
<br>
Signed-off-by: Emil Velikov <<a href="mailto:emil.velikov@collabora.com">emil.velikov@collabora.com</a>><br>
---<br>
 src/mesa/state_tracker/st_<wbr>glsl_to_tgsi.cpp | 27 +++++++++++++++++++++++++++<br>
 1 file changed, 27 insertions(+)<br>
<br>
diff --git a/src/mesa/state_tracker/st_<wbr>glsl_to_tgsi.cpp b/src/mesa/state_tracker/st_<wbr>glsl_to_tgsi.cpp<br>
index a437645d9e..b154fad185 100644<br>
--- a/src/mesa/state_tracker/st_<wbr>glsl_to_tgsi.cpp<br>
+++ b/src/mesa/state_tracker/st_<wbr>glsl_to_tgsi.cpp<br>
@@ -2319,6 +2319,33 @@ glsl_to_tgsi_visitor::visit_<wbr>expression(ir_expression* ir, st_src_reg *op)<br>
    case ir_binop_carry:<br>
    case ir_binop_borrow:<br>
    case ir_unop_ssbo_unsized_array_<wbr>length:<br>
+   case ir_unop_bitcast_i642d:<br>
+   case ir_unop_bitcast_d2u64:<br>
+   case ir_unop_bitcast_d2i64:<br>
+   case ir_unop_i642i:<br>
+   case ir_unop_u642i:<br>
+   case ir_unop_i642u:<br>
+   case ir_unop_u642u:<br>
+   case ir_unop_i642b:<br>
+   case ir_unop_i642f:<br>
+   case ir_unop_u642f:<br>
+   case ir_unop_i642d:<br>
+   case ir_unop_u642d:<br>
+   case ir_unop_i2i64:<br>
+   case ir_unop_u2i64:<br>
+   case ir_unop_b2i64:<br>
+   case ir_unop_f2i64:<br>
+   case ir_unop_d2i64:<br>
+   case ir_unop_i2u64:<br>
+   case ir_unop_u2u64:<br>
+   case ir_unop_f2u64:<br>
+   case ir_unop_d2u64:<br>
+   case ir_unop_u642i64:<br>
+   case ir_unop_i642u64:<br>
+   case ir_unop_pack_int_2x32:<br>
+   case ir_unop_pack_uint_2x32:<br>
+   case ir_unop_unpack_int_2x32:<br>
+   case ir_unop_unpack_uint_2x32:<br>
       /* This operation is not supported, or should have already been handled.<br>
        */<br>
       assert(!"Invalid ir opcode in glsl_to_tgsi_visitor::visit()"<wbr>);<br>
--<br>
2.11.0<br>
<br>
______________________________<wbr>_________________<br>
mesa-dev mailing list<br>
<a href="mailto:mesa-dev@lists.freedesktop.org">mesa-dev@lists.freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/mesa-dev" rel="noreferrer" target="_blank">https://lists.freedesktop.org/<wbr>mailman/listinfo/mesa-dev</a><br>
</blockquote></div></div>