etnaviv: abort() instead of assert(0) on compiler error

Signed-off-by: Italo Nicola <italonicola@collabora.com>
Reviewed-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22210>
This commit is contained in:
Italo Nicola 2023-03-23 00:47:36 +00:00 committed by Marge Bot
parent debc543904
commit 3b7d35bb99

View file

@ -62,7 +62,7 @@ struct etna_compile {
#define compile_error(ctx, args...) ({ \
printf(args); \
ctx->error = true; \
assert(0); \
abort(); \
})
enum {