summaryrefslogtreecommitdiff
path: root/stdlib
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2016-01-07 17:18:09 -0500
committerMike Frysinger <vapier@gentoo.org>2016-01-07 17:29:17 -0500
commit6e76c11f89e9bd0b8bb7185dc754bf6c7dac572b (patch)
treed43df165a83e9558ffb7541ab71c10db5168ad28 /stdlib
parent5d29eefd6151e1475aeb4d89041313451c02fa41 (diff)
longlong: fix sh -Wundef builds
This file fails when building for SuperH as it assumes __SHMEDIA__ is always defined. Update the code to check if it's defined.
Diffstat (limited to 'stdlib')
-rw-r--r--stdlib/longlong.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/longlong.h b/stdlib/longlong.h
index 4c8d131b9e..5cbc410fb0 100644
--- a/stdlib/longlong.h
+++ b/stdlib/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 \