This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] longlong: fix sh -Wundef builds


On Jan 8, 2016, at 4:39 AM, Mike Frysinger <vapier@gentoo.org> wrote:

> This file fails when building for SuperH as it assumes __SHMEDIA__ is
> always defined.  Update the code to check if it's defined.

This is OK for trunk.  Thanks for spotting it.

Cheers,
Oleg

> ---
> include/longlong.h | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/include/longlong.h b/include/longlong.h
> index d7ef671..78042d7 100644
> --- a/include/longlong.h
> +++ b/include/longlong.h
> @@ -1086,7 +1086,7 @@ extern UDItype __umulsidi3 (USItype, USItype);
>   } while (0)
> #endif
> 
> -#if defined(__sh__) && !__SHMEDIA__ && W_TYPE_SIZE == 32
> +#if defined(__sh__) && (!defined (__SHMEDIA__) || !__SHMEDIA__) && W_TYPE_SIZE == 32
> #ifndef __sh1__
> #define umul_ppmm(w1, w0, u, v) \
>   __asm__ (                                \
> @@ -1159,7 +1159,7 @@ extern UDItype __umulsidi3 (USItype, USItype);
> 
> #endif /* __sh__ */
> 
> -#if defined (__SH5__) && __SHMEDIA__ && W_TYPE_SIZE == 32
> +#if defined (__SH5__) && (!defined (__SHMEDIA__) || !__SHMEDIA__) && W_TYPE_SIZE == 32
> #define __umulsidi3(u,v) ((UDItype)(USItype)u*(USItype)v)
> #define count_leading_zeros(count, x) \
>   do                                    \
> -- 
> 2.6.2
> 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]