mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-05 00:49:53 +08:00
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:
parent
ae02eae82c
commit
348f0869b6
@ -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
|
||||
|
@ -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 \
|
||||
|
Loading…
Reference in New Issue
Block a user