summaryrefslogtreecommitdiff
path: root/gcc/longlong.h
diff options
context:
space:
mode:
authorbernie <bernie@138bc75d-0d04-0410-961f-82ee72b054a4>2004-01-18 05:07:35 +0000
committerbernie <bernie@138bc75d-0d04-0410-961f-82ee72b054a4>2004-01-18 05:07:35 +0000
commit5c806626adb3a1de3b53730d16b99d3a6d647598 (patch)
tree132bc49bc553b8cd739cd642153dd262376ecab8 /gcc/longlong.h
parentc4049cc0f08eea4c1ed822bf3a4b4a2ef9ba958f (diff)
downloadgcc-5c806626adb3a1de3b53730d16b99d3a6d647598.tar.gz
* longlong.h (mc68020, __mc68030__, mc68030, __mc68040__, mc68040,
mcpu32): Remove redundant checks for implied target predefines. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@76084 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/longlong.h')
-rw-r--r--gcc/longlong.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/gcc/longlong.h b/gcc/longlong.h
index 2fb68e7c373..b86bf97f21b 100644
--- a/gcc/longlong.h
+++ b/gcc/longlong.h
@@ -414,11 +414,8 @@ UDItype __umulsidi3 (USItype, USItype);
"1" ((USItype) (al)), \
"g" ((USItype) (bl)))
-/* The '020, '030, '040 and CPU32 have 32x32->64 and 64/32->32q-32r. */
-#if defined (__mc68020__) || defined(mc68020) \
- || defined(__mc68030__) || defined(mc68030) \
- || defined(__mc68040__) || defined(mc68040) \
- || defined(__mcpu32__) || defined(mcpu32)
+/* The '020, '030, '040, '060 and CPU32 have 32x32->64 and 64/32->32q-32r. */
+#if defined (__mc68020__)
#define umul_ppmm(w1, w0, u, v) \
__asm__ ("mulu%.l %3,%1:%0" \
: "=d" ((USItype) (w0)), \
@@ -519,11 +516,7 @@ UDItype __umulsidi3 (USItype, USItype);
/* The '020, '030, '040 and '060 have bitfield insns.
cpu32 disguises as a 68020, but lacks them. */
-#if ( defined (__mc68020__) || defined(mc68020) \
- || defined(__mc68030__) || defined(mc68030) \
- || defined(__mc68040__) || defined(mc68040) \
- || defined(__mc68060__) || defined(mc68060) ) \
- && !defined(__mcpu32__)
+#if defined (__mc68020__) && !defined(__mcpu32__)
#define count_leading_zeros(count, x) \
__asm__ ("bfffo %1{%b2:%b2},%0" \
: "=d" ((USItype) (count)) \