]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
longlong: fix sh -Wundef builds
authorvapier <vapier@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 7 Jan 2016 22:18:09 +0000 (22:18 +0000)
committervapier <vapier@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 7 Jan 2016 22:18:09 +0000 (22:18 +0000)
This file fails when building for SuperH as it assumes __SHMEDIA__
is always defined.  Update the code to check if it's defined.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@232143 138bc75d-0d04-0410-961f-82ee72b054a4

include/ChangeLog
include/longlong.h

index 6d1264845b5ebb35264313ace814c4034d915995..adab9eebafbaaa3172f844240e36aed9ac840850 100644 (file)
@@ -1,3 +1,9 @@
+2016-01-07  Mike Frysinger  <vapier@gentoo.org>
+
+       * longlong.h: Change !__SHMEDIA__ to
+       (!defined (__SHMEDIA__) || !__SHMEDIA__).
+       Change __SHMEDIA__ to defined (__SHMEDIA__) && __SHMEDIA__.
+
 2016-01-05  Mike Frysinger  <vapier@gentoo.org>
 
        * libiberty.h (dupargv): Change arg to char * const *.
index d7ef671226cd6f545c2fd3ede22b693cd213c934..34ad9b4f57109b32ae42e960a610108da0b83808 100644 (file)
@@ -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                                                                   \