i960.h (OVERRIDE_OPTIONS): Warn if -mlong-double-64 is used.

Thu Feb 11 17:38:40 1999  Jim Wilson  <wilson@cygnus.com>
	* i960/i960.h (OVERRIDE_OPTIONS): Warn if -mlong-double-64 is used.
	(LONG_DOUBLE_TYPE_SIZE): Undef then unconditionally define to 96.

From-SVN: r25155
This commit is contained in:
Jim Wilson 1999-02-11 14:48:43 +00:00 committed by Vladimir Makarov
parent d64ca10053
commit d86037fab0
2 changed files with 12 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Thu Feb 11 17:38:40 1999 Jim Wilson <wilson@cygnus.com>
* i960/i960.h (OVERRIDE_OPTIONS): Warn if -mlong-double-64 is used.
(LONG_DOUBLE_TYPE_SIZE): Undef then unconditionally define to 96.
Thu Feb 11 15:11:35 1999 Jeffrey A Law (law@cygnus.com)
* mn10200.md (bset); Re-enable.

View file

@ -321,6 +321,9 @@ extern int target_flags;
flag_signed_char = 1; \
target_flags |= TARGET_FLAG_CLEAN_LINKAGE; \
} \
/* ??? See the LONG_DOUBLE_TYPE_SIZE definition below. */ \
if (TARGET_LONG_DOUBLE_64) \
warning ("The -mlong-double-64 option does not work yet.", 0);\
i960_initialize (); \
}
@ -369,6 +372,10 @@ extern int target_flags;
ROUND_TYPE_ALIGN adjust the alignment for speed. */
#define LONG_DOUBLE_TYPE_SIZE (TARGET_LONG_DOUBLE_64 ? 64 : 96)
/* ??? This must be a constant, because real.c and real.h test it with #if. */
#undef LONG_DOUBLE_TYPE_SIZE
#define LONG_DOUBLE_TYPE_SIZE 96
/* Define this to set long double type size to use in libgcc2.c, which can
not depend on target_flags. */
#if defined(__LONG_DOUBLE_64__)