diff options
Diffstat (limited to 'gnu')
-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")) { |