1 /*
2 * Copyright (c) 2023-2024, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
8 /* Since this gets run at the start of every relocatable function, use it to
9 * make sure that the GOT register hasn't been clobbered
10 */
__cyg_profile_func_enter(void * func,void * callsite)11 void __cyg_profile_func_enter(void *func, void *callsite)
12 {
13 }
14
__cyg_profile_func_exit(void * func,void * callsite)15 void __cyg_profile_func_exit(void *func, void *callsite)
16 {
17 }
18