From c797e25f3ecd362ff8f7104ea8e46e6142f547a7 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Tue, 8 Feb 2022 12:37:03 +0600 Subject: [PATCH] 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 --- include/osmocom/core/utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osmocom/core/utils.h b/include/osmocom/core/utils.h index 182da08de..ba2cafbe9 100644 --- a/include/osmocom/core/utils.h +++ b/include/osmocom/core/utils.h @@ -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 */