| * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved. |
| * SPDX-License-Identifier: BSD-3-Clause |
| #include <platform_def.h> |
| #include <common/debug.h> |
| #ifndef PLAT_LOG_LEVEL_ASSERT |
| #define PLAT_LOG_LEVEL_ASSERT LOG_LEVEL |
| # if PLAT_LOG_LEVEL_ASSERT >= LOG_LEVEL_VERBOSE |
| # define assert(e) ((e) ? (void)0 : __assert(__FILE__, __LINE__, #e)) |
| # elif PLAT_LOG_LEVEL_ASSERT >= LOG_LEVEL_INFO |
| # define assert(e) ((e) ? (void)0 : __assert(__FILE__, __LINE__)) |
| # define assert(e) ((e) ? (void)0 : __assert()) |
| #define assert(e) ((void)0) |
| #endif /* ENABLE_ASSERTIONS */ |
| #if PLAT_LOG_LEVEL_ASSERT >= LOG_LEVEL_VERBOSE |
| void __dead2 __assert(const char *file, unsigned int line, |
| #elif PLAT_LOG_LEVEL_ASSERT >= LOG_LEVEL_INFO |
| void __dead2 __assert(const char *file, unsigned int line); |
| void __dead2 __assert(void); |