From d96541f3fc934fa27b800a07ccf0597bd5a80dd5 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Tue, 10 Sep 2013 11:02:58 -0700 Subject: armv7: mark EABI compatibility symbols as used These symbols are not used anywhere in our C code, so when using GCC's link time optimization feature they will be dropped even though they're needed by libgcc. Hence we need to mark them as used so GCC does not stumble and fall over its own guts. Change-Id: Ib2e9ea2610b57ab8244d5b699dd56025a4f08a01 Signed-off-by: Stefan Reinauer Reviewed-on: https://chromium-review.googlesource.com/168773 (cherry picked from commit 416ffc880bcf4122b5430fbd9d9547c83886af2f) Signed-off-by: Isaac Christensen Reviewed-on: http://review.coreboot.org/6640 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi Reviewed-by: Paul Menzel --- src/arch/armv7/eabi_compat.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/arch') diff --git a/src/arch/armv7/eabi_compat.c b/src/arch/armv7/eabi_compat.c index c063c85dd8..0c79cd51d3 100644 --- a/src/arch/armv7/eabi_compat.c +++ b/src/arch/armv7/eabi_compat.c @@ -12,7 +12,7 @@ #include /* FIXME(dhendrix): prototypes added for assembler */ -int raise (int signum); +int raise (int signum) __attribute__((used)); int raise (int signum) { printk(BIOS_CRIT, "raise: Signal # %d caught\n", signum); @@ -20,12 +20,12 @@ int raise (int signum) } /* Dummy function to avoid linker complaints */ -void __aeabi_unwind_cpp_pr0(void); +void __aeabi_unwind_cpp_pr0(void) __attribute__((used)); void __aeabi_unwind_cpp_pr0(void) { }; -void __aeabi_unwind_cpp_pr1(void); +void __aeabi_unwind_cpp_pr1(void) __attribute__((used)); void __aeabi_unwind_cpp_pr1(void) { }; -- cgit v1.2.3