summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/gas
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-06-17 00:24:30 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-06-17 00:24:30 +0000
commit7f2e0c44ba5e0f1c6e4755779b88367f1aabb0cb (patch)
treef7094a9d7f780019172089498f36754f8c0cf8da /gnu/usr.bin/gas
parentb505426e70b93acc6a7a48009570759c4f450fc2 (diff)
68060 support == 68040 support
Diffstat (limited to 'gnu/usr.bin/gas')
-rw-r--r--gnu/usr.bin/gas/config/tc-m68k.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/usr.bin/gas/config/tc-m68k.c b/gnu/usr.bin/gas/config/tc-m68k.c
index 9a03e8a8ee2..894596167ef 100644
--- a/gnu/usr.bin/gas/config/tc-m68k.c
+++ b/gnu/usr.bin/gas/config/tc-m68k.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tc-m68k.c,v 1.3 1996/04/23 00:16:02 niklas Exp $ */
+/* $OpenBSD: tc-m68k.c,v 1.4 1996/06/17 00:24:29 deraadt Exp $ */
/* tc-m68k.c All the m68020 specific stuff in one convenient, huge,
slow to compile, easy to find file.
@@ -3884,6 +3884,9 @@ char ***vecP;
} else if (!strcmp(*argP, "68040")) {
current_architecture |= m68040 | MAYBE_FLOAT_TOO;
+
+ } else if (!strcmp(*argP, "68060")) {
+ current_architecture |= m68040 | MAYBE_FLOAT_TOO;
#ifndef NO_68881
} else if (!strcmp(*argP, "68881")) {