aboutsummaryrefslogtreecommitdiff
path: root/include/longlong.h
diff options
context:
space:
mode:
authorSteve Ellcey <sellcey@mips.com>2014-05-01 15:07:00 +0000
committerSteve Ellcey <sje@gcc.gnu.org>2014-05-01 15:07:00 +0000
commitb6799f373ac288dc5de71240a13488e9e3530f2a (patch)
tree60761a252e0ca04ad34e354d564fd2918f8276e2 /include/longlong.h
parent53c8d5a7298037cfddf3a3084a7f2674a30eeabd (diff)
downloadgcc-b6799f373ac288dc5de71240a13488e9e3530f2a.zip
gcc-b6799f373ac288dc5de71240a13488e9e3530f2a.tar.gz
gcc-b6799f373ac288dc5de71240a13488e9e3530f2a.tar.bz2
longlong.h: Use 'defined()' to check __mips16.
2014-05-01 Steve Ellcey <sellcey@mips.com> * include/longlong.h: Use 'defined()' to check __mips16. From-SVN: r209980
Diffstat (limited to 'include/longlong.h')
-rw-r--r--include/longlong.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/longlong.h b/include/longlong.h
index 0770290..31f88cb 100644
--- a/include/longlong.h
+++ b/include/longlong.h
@@ -848,7 +848,7 @@ extern UDItype __umulsidi3 (USItype, USItype);
#define UMUL_TIME 10
#define UDIV_TIME 100
-#if (__mips == 32 || __mips == 64) && ! __mips16
+#if (__mips == 32 || __mips == 64) && ! defined (__mips16)
#define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clz (X))
#define COUNT_LEADING_ZEROS_0 32
#endif