blob: 8f336e78fbde0c84e3a326eae0592b869f53a029 [file] [log] [blame]
// SPDX-License-Identifier: BSD-3-Clause
/*
* Copyright (c) 2021-2022, Arm Limited and Contributors. All rights reserved.
*/
#include "assert_fail_handler.h"
#include "compiler.h"
#include "trace.h"
/*
* The generic trace function called on assert fail.
*/
void __noreturn assert_fail_handler(const char *file, int line,
const char *func, const char *failedexpr)
{
#if TRACE_LEVEL >= TRACE_LEVEL_ERROR
trace_printf(func, line, TRACE_LEVEL_ERROR, "assertion %s failed", failedexpr);
#endif /* TRACE_LEVEL */
while (1)
;
}