netbsd-elf.h (LONG_DOUBLE_TYPE_SIZE): Compute at run-time.

* config/m68k/netbsd-elf.h (LONG_DOUBLE_TYPE_SIZE): Compute
at run-time.
(LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Set to 96 if not __mc68010__.

From-SVN: r54059
This commit is contained in:
Jason Thorpe 2002-05-30 17:14:24 +00:00 committed by Jason Thorpe
parent ae02eae82c
commit 348f0869b6
2 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
* config/m68k/netbsd-elf.h (LONG_DOUBLE_TYPE_SIZE): Compute
at run-time.
(LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Set to 96 if not __mc68010__.
2002-05-30 Aldy Hernandez <aldyh@redhat.com>
* config/rs6000/rs6000.c (rs6000_expand_unop_builtin): Return

View File

@ -42,13 +42,15 @@ Boston, MA 02111-1307, USA. */
/* Don't try using XFmode on the 68010. */
#if TARGET_DEFAULT == 0
#undef LONG_DOUBLE_TYPE_SIZE
#define LONG_DOUBLE_TYPE_SIZE 64
#endif
#define LONG_DOUBLE_TYPE_SIZE \
((TARGET_68020 || TARGET_68040 || TARGET_68040_ONLY || \
TARGET_68060) ? 96 : 64)
#ifdef __mc68010__
#define LIBGCC2_LONG_DOUBLE_TYPE_SIZE 64
#else
#define LIBGCC2_LONG_DOUBLE_TYPE_SIZE 96
#endif
#define EXTRA_SPECS \