util: remove our redefinition of assert

I think we can all agree that our own assert is unnecessary.

Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/6780

Acked-By: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Reviewed-by: Emma Anholt <emma@anholt.net>
Acked-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17403>
This commit is contained in:
Marek Olšák 2022-07-07 13:28:27 -04:00 committed by Marge Bot
parent 6676349c5d
commit 2f01a22fe4
3 changed files with 0 additions and 13 deletions

View File

@ -408,9 +408,6 @@ lp_build_swizzle_aos(struct lp_build_context *bld,
switch (swizzles[i]) {
default:
assert(0);
#if defined(NDEBUG) || defined(DEBUG)
FALLTHROUGH;
#endif
case PIPE_SWIZZLE_X:
case PIPE_SWIZZLE_Y:
case PIPE_SWIZZLE_Z:

View File

@ -187,9 +187,6 @@ st_gl_texture_dims_to_pipe_dims(GLenum texture,
break;
default:
assert(0 && "Unexpected texture in st_gl_texture_dims_to_pipe_dims()");
#if defined(NDEBUG) || defined(DEBUG)
FALLTHROUGH;
#endif
case GL_TEXTURE_3D:
case GL_PROXY_TEXTURE_3D:
*widthOut = widthIn;

View File

@ -233,13 +233,6 @@ void _debug_assert_fail(const char *expr,
#endif
/** Override standard assert macro */
#ifdef assert
#undef assert
#endif
#define assert(expr) debug_assert(expr)
/**
* Output the current function name.
*/