* [PATCH 1/1] Remove ns32k leftover
@ 2017-06-25 5:12 Maya Rashish
2017-06-27 16:10 ` Jeff Law
0 siblings, 1 reply; 2+ messages in thread
From: Maya Rashish @ 2017-06-25 5:12 UTC (permalink / raw)
To: gcc-patches; +Cc: coypu
Support for ns32k was removed in GCC4.
---
include/longlong.h | 36 ------------------------------------
1 file changed, 36 deletions(-)
diff --git a/include/longlong.h b/include/longlong.h
index 9d3ab21be..c24568ace 100644
--- a/include/longlong.h
+++ b/include/longlong.h
@@ -858,42 +858,6 @@ extern UDItype __umulsidi3 (USItype, USItype);
#endif
#endif /* __mips__ */
-#if defined (__ns32000__) && W_TYPE_SIZE == 32
-#define umul_ppmm(w1, w0, u, v) \
- ({union {UDItype __ll; \
- struct {USItype __l, __h;} __i; \
- } __xx; \
- __asm__ ("meid %2,%0" \
- : "=g" (__xx.__ll) \
- : "%0" ((USItype) (u)), \
- "g" ((USItype) (v))); \
- (w1) = __xx.__i.__h; (w0) = __xx.__i.__l;})
-#define __umulsidi3(u, v) \
- ({UDItype __w; \
- __asm__ ("meid %2,%0" \
- : "=g" (__w) \
- : "%0" ((USItype) (u)), \
- "g" ((USItype) (v))); \
- __w; })
-#define udiv_qrnnd(q, r, n1, n0, d) \
- ({union {UDItype __ll; \
- struct {USItype __l, __h;} __i; \
- } __xx; \
- __xx.__i.__h = (n1); __xx.__i.__l = (n0); \
- __asm__ ("deid %2,%0" \
- : "=g" (__xx.__ll) \
- : "0" (__xx.__ll), \
- "g" ((USItype) (d))); \
- (r) = __xx.__i.__l; (q) = __xx.__i.__h; })
-#define count_trailing_zeros(count,x) \
- do { \
- __asm__ ("ffsd %2,%0" \
- : "=r" ((USItype) (count)) \
- : "0" ((USItype) 0), \
- "r" ((USItype) (x))); \
- } while (0)
-#endif /* __ns32000__ */
-
/* FIXME: We should test _IBMR2 here when we add assembly support for the
system vendor compilers.
FIXME: What's needed for gcc PowerPC VxWorks? __vxworks__ is not good
--
2.13.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH 1/1] Remove ns32k leftover
2017-06-25 5:12 [PATCH 1/1] Remove ns32k leftover Maya Rashish
@ 2017-06-27 16:10 ` Jeff Law
0 siblings, 0 replies; 2+ messages in thread
From: Jeff Law @ 2017-06-27 16:10 UTC (permalink / raw)
To: Maya Rashish, gcc-patches
On 06/24/2017 11:11 PM, Maya Rashish wrote:
> Support for ns32k was removed in GCC4.
> ---
> include/longlong.h | 36 ------------------------------------
> 1 file changed, 36 deletions(-)
Thanks. I added a ChangeLog entry and committed your change.
jeff
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-06-27 16:10 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-25 5:12 [PATCH 1/1] Remove ns32k leftover Maya Rashish
2017-06-27 16:10 ` Jeff Law
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).