diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-02-20 15:32:46 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-02-20 15:32:46 +0000 |
commit | 6b24521de7eba9010d5114f32ee351be0136fa31 (patch) | |
tree | c033cd0cbcc8bfbbf97481a5f01a8a8215daa67d /gnu/egcs/gcc | |
parent | a8ab6b6b0a425eca479b84835fa235eb67f5f25f (diff) |
Change defaults on m68k platforms from -m68020 to -m68020-60.
This makes a noticeable performance improvement on 68060, especially for
crypto operations (such as ssh), with basically no loss on 680[234]0.
ok deraadt@
Diffstat (limited to 'gnu/egcs/gcc')
-rw-r--r-- | gnu/egcs/gcc/config/m68k/openbsd.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/egcs/gcc/config/m68k/openbsd.h b/gnu/egcs/gcc/config/m68k/openbsd.h index 67d877c8d39..a22c26addfb 100644 --- a/gnu/egcs/gcc/config/m68k/openbsd.h +++ b/gnu/egcs/gcc/config/m68k/openbsd.h @@ -19,8 +19,9 @@ the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* m68k is an old configuration that does not yet use the TARGET_CPU_DEFAULT - framework. */ -#define TARGET_DEFAULT (MASK_BITFIELD | MASK_68881 | MASK_68020) + framework. OpenBSD uses -m68020-60 by default. */ +#define TARGET_DEFAULT \ + (MASK_BITFIELD | MASK_68881 | MASK_68020 | MASK_68040 | MASK_68060) #include <m68k/m68k.h> |