diff options
| -rw-r--r-- | arch/sh/crt_arch.h | 3 | ||||
| -rw-r--r-- | arch/sh/src/__fpsrc_values.c | 5 | 
2 files changed, 7 insertions, 1 deletions
| diff --git a/arch/sh/crt_arch.h b/arch/sh/crt_arch.h index a69d1c9f..5fd39fc6 100644 --- a/arch/sh/crt_arch.h +++ b/arch/sh/crt_arch.h @@ -7,3 +7,6 @@ _start: \n\  	bsr __cstart \n\  	nop \n\  "); + +/* used by gcc for switching the FPU between single and double precision */ +const unsigned long __fpscr_values[2] = { 0, 0x80000 }; diff --git a/arch/sh/src/__fpsrc_values.c b/arch/sh/src/__fpsrc_values.c index 56056617..64b458f9 100644 --- a/arch/sh/src/__fpsrc_values.c +++ b/arch/sh/src/__fpsrc_values.c @@ -1,2 +1,5 @@ +#include "libc.h" +  /* used by gcc for switching the FPU between single and double precision */ -const unsigned long __fpscr_values[2] = { 0, 0x80000 }; +const unsigned long __fpscr_values[2] ATTR_LIBC_VISIBILITY = { 0, 0x80000 }; + | 
