From: Alyssa Rosenzweig Date: Fri, 1 May 2020 18:13:10 +0000 (-0400) Subject: pan/bi: Abort on unhandled intrinsics X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c48839086dbb04bbf23efc1d9bfee73f21f94561;p=mesa.git pan/bi: Abort on unhandled intrinsics Signed-off-by: Alyssa Rosenzweig Part-of: --- diff --git a/src/panfrost/bifrost/bifrost_compile.c b/src/panfrost/bifrost/bifrost_compile.c index a76ac2d0a0c..8037e239d53 100644 --- a/src/panfrost/bifrost/bifrost_compile.c +++ b/src/panfrost/bifrost/bifrost_compile.c @@ -321,7 +321,7 @@ emit_intrinsic(bi_context *ctx, nir_intrinsic_instr *instr) break; default: - /* todo */ + unreachable("Unknown intrinsic"); break; } }