diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2014-04-30 14:12:32 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2014-04-30 14:12:32 +0000 |
commit | 8df07a2c14eafd6b3b52b2126c4e58b4107ea784 (patch) | |
tree | 961204d1b3a689fd4c2da54ebad550ced6b6d28d /include/longlong.h | |
parent | 2cf03b11f748c10d0a52ee82e23b0dd6cd3eae4d (diff) | |
download | gcc-8df07a2c14eafd6b3b52b2126c4e58b4107ea784.zip gcc-8df07a2c14eafd6b3b52b2126c4e58b4107ea784.tar.gz gcc-8df07a2c14eafd6b3b52b2126c4e58b4107ea784.tar.bz2 |
longlong.h (__i386__): Remove W_TYPE_SIZE==64 handling.
include/
* longlong.h (__i386__): Remove W_TYPE_SIZE==64 handling.
From-SVN: r209932
Diffstat (limited to 'include/longlong.h')
-rw-r--r-- | include/longlong.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/longlong.h b/include/longlong.h index d45dbe2..0770290 100644 --- a/include/longlong.h +++ b/include/longlong.h @@ -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)), \ |