i965/vec4: Make the vec4_visitor::nir_emit_instr default case unreachable
authorIan Romanick <ian.d.romanick@intel.com>
Tue, 3 Jul 2018 03:29:27 +0000 (20:29 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Fri, 6 Jul 2018 04:13:32 +0000 (21:13 -0700)
The bug fixed by the previous commit went undetected because extra
stderr messages are not flagged by the CI.  Copy the solution from
fs_visitor::nir_emit_instr and mark the default case unreachable.

An alternate solution is to delete the default case so that the compiler
will issue a warning.  That may require more work since there are other
(impossible) cases that exist.

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
src/intel/compiler/brw_vec4_nir.cpp

index 7131fa06b4ad32e74bc57c4926bb748693414205..b77fa5fa821be19aedb0a718af0c858e8854410f 100644 (file)
@@ -169,8 +169,7 @@ vec4_visitor::nir_emit_instr(nir_instr *instr)
       break;
 
    default:
-      fprintf(stderr, "VS instruction not yet implemented by NIR->vec4\n");
-      break;
+      unreachable("VS instruction not yet implemented by NIR->vec4");
    }
 }