mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
assert: extend likely macro to be called when silent assertions are off
This commit is contained in:
parent
d059a955ae
commit
5db46ab9e6
@ -23,8 +23,19 @@
|
||||
|
||||
#include_next <assert.h>
|
||||
|
||||
|
||||
#if defined(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT) && !defined(NDEBUG)
|
||||
#undef assert
|
||||
#define assert(__e) (likely(__e)) ? (void)0 : abort()
|
||||
#undef assert
|
||||
#define assert(__e) (likely(__e)) ? (void)0 : abort()
|
||||
#else
|
||||
/* moved part of toolchain provided assert to there then
|
||||
* we can tweak the original assert macro to perform likely
|
||||
* before deliver it to original toolchain implementation
|
||||
*/
|
||||
#undef assert
|
||||
#ifdef NDEBUG
|
||||
# define assert(__e) ((void)0)
|
||||
#else
|
||||
# define assert(__e) (likely(__e) ? (void)0 : __assert_func (__FILE__, __LINE__, \
|
||||
__ASSERT_FUNC, #__e))
|
||||
#endif
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user