zink: fix unreachable() location in ntv streamout info

super annoying to debug otherwise

Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15327>
This commit is contained in:
Mike Blumenkrantz 2022-03-08 15:43:34 -05:00 committed by Marge Bot
parent b53ee02192
commit 02569428a8

View file

@ -1327,9 +1327,9 @@ get_output_type(struct ntv_context *ctx, unsigned register_index, unsigned num_c
return get_fvec_type(ctx, 64, num_components);
default:
unreachable("unknown type");
break;
}
unreachable("unknown type");
return 0;
}