diff options
author | Andreas Schwab <schwab@suse.de> | 2007-06-03 14:32:43 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@gcc.gnu.org> | 2007-06-03 14:32:43 +0000 |
commit | b6a9c30c80a0713b0b27f434dfe34b0552fc7384 (patch) | |
tree | b23bf23815638d9880bbb2f271bb74a3a45a507c /gcc/real.h | |
parent | 4889b20e236b872403df3112167b1d81c00110fe (diff) | |
download | gcc-b6a9c30c80a0713b0b27f434dfe34b0552fc7384.tar.gz |
m68k.c (override_options): Don't override REAL_MODE_FORMAT.
* config/m68k/m68k.c (override_options): Don't override
REAL_MODE_FORMAT.
* config/m68k/m68k-modes.def (SF, DF): Define to use
motorola_single_format and motorola_double_format, resp.
* real.c (motorola_single_format): Renamed from
coldfire_single_format.
(motorola_double_format): Renamed from coldfire_double_format.
(encode_ieee_extended): Generate a proper canonical NaN image
respecting canonical_nan_lsbs_set.
(ieee_extended_motorola_format): Set canonical_nan_lsbs_set to
true.
* real.h: Adjust declarations.
From-SVN: r125295
Diffstat (limited to 'gcc/real.h')
-rw-r--r-- | gcc/real.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/real.h b/gcc/real.h index f050dafd48c..ec5a207cb9c 100644 --- a/gcc/real.h +++ b/gcc/real.h @@ -1,6 +1,6 @@ /* Definitions of floating-point access for GNU compiler. Copyright (C) 1989, 1991, 1994, 1996, 1997, 1998, 1999, - 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + 2000, 2002, 2003, 2004, 2005, 2007 Free Software Foundation, Inc. This file is part of GCC. @@ -254,10 +254,10 @@ extern unsigned int real_hash (const REAL_VALUE_TYPE *); /* Target formats defined in real.c. */ extern const struct real_format ieee_single_format; extern const struct real_format mips_single_format; -extern const struct real_format coldfire_single_format; +extern const struct real_format motorola_single_format; extern const struct real_format ieee_double_format; extern const struct real_format mips_double_format; -extern const struct real_format coldfire_double_format; +extern const struct real_format motorola_double_format; extern const struct real_format ieee_extended_motorola_format; extern const struct real_format ieee_extended_intel_96_format; extern const struct real_format ieee_extended_intel_96_round_53_format; |