core/utils.h: make use of OSMO_LIKELY in OSMO_ASSERT

Theoretically, this should improve performance of the code where
we frequently invoke OSMO_ASSERT(), like osmo-msc and osmo-bsc.

Change-Id: I29b32a2477ec92762f8f0ce5e5c5a30810f6abbe
This commit is contained in:
Vadim Yanitskiy 2022-02-08 12:37:03 +06:00 committed by fixeria
parent 85c7831b65
commit c797e25f3e
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ do { \
*/
#define OSMO_ASSERT(exp) \
do { \
if (!(exp)) { \
if (OSMO_UNLIKELY(!(exp))) { \
osmo_panic("Assert failed %s %s:%d\n", #exp, __FILE__, __LINE__); \
} \
} while (0); /* some code invokes OSMO_ASSERT() without the semicolon */