Patrick Georgi | 0a3d4e0 | 2020-03-04 14:39:09 +0100 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
| 2 | /* This file is part of the coreboot project. */ |
Furquan Shaikh | 2af76f4 | 2014-04-28 16:39:40 -0700 | [diff] [blame] | 3 | /* |
Martin Roth | 96c075a | 2019-07-28 19:50:52 -0600 | [diff] [blame] | 4 | * Utility functions needed for (some) EABI conformant tool chains. |
Furquan Shaikh | 2af76f4 | 2014-04-28 16:39:40 -0700 | [diff] [blame] | 5 | */ |
| 6 | |
Furquan Shaikh | 2af76f4 | 2014-04-28 16:39:40 -0700 | [diff] [blame] | 7 | int raise (int signum) __attribute__((used)); |
| 8 | int raise (int signum) |
| 9 | { |
| 10 | return 0; |
| 11 | } |
| 12 | |
| 13 | void __aeabi_unwind_cpp_pr0(void) __attribute__((used)); |
| 14 | void __aeabi_unwind_cpp_pr0(void) |
| 15 | { |
| 16 | }; |
| 17 | |
| 18 | void __aeabi_unwind_cpp_pr1(void) __attribute__((used)); |
| 19 | void __aeabi_unwind_cpp_pr1(void) |
| 20 | { |
| 21 | }; |