Commit 348f0869 by Jason Thorpe Committed by Jason Thorpe

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
parent ae02eae8
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> 2002-05-30 Aldy Hernandez <aldyh@redhat.com>
* config/rs6000/rs6000.c (rs6000_expand_unop_builtin): Return * config/rs6000/rs6000.c (rs6000_expand_unop_builtin): Return
......
...@@ -42,13 +42,15 @@ Boston, MA 02111-1307, USA. */ ...@@ -42,13 +42,15 @@ Boston, MA 02111-1307, USA. */
/* Don't try using XFmode on the 68010. */ /* Don't try using XFmode on the 68010. */
#if TARGET_DEFAULT == 0
#undef LONG_DOUBLE_TYPE_SIZE #undef LONG_DOUBLE_TYPE_SIZE
#define LONG_DOUBLE_TYPE_SIZE 64 #define LONG_DOUBLE_TYPE_SIZE \
#endif ((TARGET_68020 || TARGET_68040 || TARGET_68040_ONLY || \
TARGET_68060) ? 96 : 64)
#ifdef __mc68010__ #ifdef __mc68010__
#define LIBGCC2_LONG_DOUBLE_TYPE_SIZE 64 #define LIBGCC2_LONG_DOUBLE_TYPE_SIZE 64
#else
#define LIBGCC2_LONG_DOUBLE_TYPE_SIZE 96
#endif #endif
#define EXTRA_SPECS \ #define EXTRA_SPECS \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment