2014-05-01 Steve Ellcey <sellcey@mips.com>

* stdlib/longlong.h: Updated from GCC.
This commit is contained in:
Steve Ellcey 2014-05-01 10:09:04 -07:00
parent 7470db0c8e
commit 6426d77e47
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2014-05-01 Steve Ellcey <sellcey@mips.com>
* stdlib/longlong.h: Updated from GCC.
2014-05-01 Will Newton <will.newton@linaro.org>
Bernard Ogden <bernie.ogden@linaro.org>

View File

@ -483,7 +483,7 @@ extern UDItype __umulsidi3 (USItype, USItype);
#define UDIV_TIME 40
#endif /* 80x86 */
#if (defined (__x86_64__) || defined (__i386__)) && W_TYPE_SIZE == 64
#if defined (__x86_64__) && W_TYPE_SIZE == 64
#define add_ssaaaa(sh, sl, ah, al, bh, bl) \
__asm__ ("add{q} {%5,%1|%1,%5}\n\tadc{q} {%3,%0|%0,%3}" \
: "=r" ((UDItype) (sh)), \
@ -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