diff options
author | 1996-06-17 00:24:29 +0000 | |
---|---|---|
committer | 1996-06-17 00:24:29 +0000 | |
commit | 73fff349531d558f70a217361833e88e8a51d5d6 (patch) | |
tree | c77e2d871722f38fcd2e5eefff1b7e19fb981b37 | |
parent | from netbsd; md_parse_arg: `-K' implies `-k' (diff) | |
download | wireguard-openbsd-73fff349531d558f70a217361833e88e8a51d5d6.tar.xz wireguard-openbsd-73fff349531d558f70a217361833e88e8a51d5d6.zip |
68060 support == 68040 support
-rw-r--r-- | gnu/usr.bin/gas/config/tc-m68k.c | 5 |
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")) { |