Furquan Shaikh | 2af76f4 | 2014-04-28 16:39:40 -0700 | [diff] [blame] | 1 | /* |
Martin Roth | 96c075a | 2019-07-28 19:50:52 -0600 | [diff] [blame] | 2 | * This file is part of the coreboot project. |
Furquan Shaikh | 2af76f4 | 2014-04-28 16:39:40 -0700 | [diff] [blame] | 3 | * |
| 4 | * This program is Free Software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public License as |
| 6 | * published by the Free Software Foundation; either version 2 of the |
| 7 | * License, or (at your option) any later version. |
Martin Roth | 4af5886 | 2016-01-21 13:15:16 -0700 | [diff] [blame] | 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
Martin Roth | 96c075a | 2019-07-28 19:50:52 -0600 | [diff] [blame] | 13 | * |
| 14 | * Utility functions needed for (some) EABI conformant tool chains. |
Furquan Shaikh | 2af76f4 | 2014-04-28 16:39:40 -0700 | [diff] [blame] | 15 | */ |
| 16 | |
Furquan Shaikh | 2af76f4 | 2014-04-28 16:39:40 -0700 | [diff] [blame] | 17 | int raise (int signum) __attribute__((used)); |
| 18 | int raise (int signum) |
| 19 | { |
| 20 | return 0; |
| 21 | } |
| 22 | |
| 23 | void __aeabi_unwind_cpp_pr0(void) __attribute__((used)); |
| 24 | void __aeabi_unwind_cpp_pr0(void) |
| 25 | { |
| 26 | }; |
| 27 | |
| 28 | void __aeabi_unwind_cpp_pr1(void) __attribute__((used)); |
| 29 | void __aeabi_unwind_cpp_pr1(void) |
| 30 | { |
| 31 | }; |