From: Kaz Kojima Date: Sun, 5 Nov 2006 12:58:28 +0000 (+0000) Subject: lib1funcs-4-300.asm: Guard entire file with #if !__SHMEDIA__ . X-Git-Tag: releases/gcc-4.3.0~8623 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7945be3f1907da2c7cbf5737d1c85f51ee55ef68;p=thirdparty%2Fgcc.git lib1funcs-4-300.asm: Guard entire file with #if !__SHMEDIA__ . * config/sh/lib1funcs-4-300.asm: Guard entire file with #if !__SHMEDIA__ . From-SVN: r118500 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 72ee3fe5a0b7..a55138989196 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2006-11-05 Kaz Kojima + + * config/sh/lib1funcs-4-300.asm: Guard entire file with + #if !__SHMEDIA__ . + 2006-11-05 Jakub Jelinek PR middle-end/29695 diff --git a/gcc/config/sh/lib1funcs-4-300.asm b/gcc/config/sh/lib1funcs-4-300.asm index b07912425afb..98c1be278a75 100644 --- a/gcc/config/sh/lib1funcs-4-300.asm +++ b/gcc/config/sh/lib1funcs-4-300.asm @@ -29,6 +29,7 @@ Boston, MA 02110-1301, USA. */ #include "lib1funcs.h" +#if !__SHMEDIA__ #ifdef L_div_table #if defined (__SH3__) || defined (__SH3E__) || defined (__SH4__) || defined (__SH4_SINGLE__) || defined (__SH4_SINGLE_ONLY__) || defined (__SH4_NOFPU__) /* This code used shld, thus is not suitable for SH1 / SH2. */ @@ -936,3 +937,4 @@ LOCAL(div_table_inv): #endif /* SH3 / SH4 */ #endif /* L_div_table */ +#endif /* !__SHMEDIA__ */