aboutsummaryrefslogtreecommitdiff
path: root/gcc/real.h
diff options
context:
space:
mode:
authorAndreas Krebbel <krebbel1@de.ibm.com>2007-05-21 12:53:08 +0000
committerAndreas Krebbel <krebbel@gcc.gnu.org>2007-05-21 12:53:08 +0000
commit4d8a8a0a223f8e65a810bdb4ec3fe7496a964699 (patch)
tree93f3471f9ba54489407fddb33fb8858923ba89bc /gcc/real.h
parent740aeb384d7e15ac53e40559852903a160b4541d (diff)
downloadgcc-4d8a8a0a223f8e65a810bdb4ec3fe7496a964699.zip
gcc-4d8a8a0a223f8e65a810bdb4ec3fe7496a964699.tar.gz
gcc-4d8a8a0a223f8e65a810bdb4ec3fe7496a964699.tar.bz2
defaults.h (IBM_FLOAT_FORMAT): Macro definition removed.
2007-05-21 Andreas Krebbel <krebbel1@de.ibm.com> * defaults.h (IBM_FLOAT_FORMAT): Macro definition removed. * doc/tm.texi (IBM_FLOAT_FORMAT): Documentation entry removed. * real.c (encode_i370_single, decode_i370_single, encode_i370_double, decode_i370_double): Functions removed. (i370_single_format, i370_double_format): Initializations removed. (real_maxval, round_for_format, exact_real_truncate, significand_size): Consider the log2_b field to always be one. (ieee_single_format, mips_single_format, coldfire_single_format, ieee_double_format, mips_double_format, coldfire_double_format, ieee_extended_motorola_format, ieee_extended_intel_96_format, ieee_extended_intel_128_format, ieee_extended_intel_96_round_53_format, ibm_extended_format, mips_extended_format, ieee_quad_format, mips_quad_format, vax_f_format, vax_d_format, vax_g_format, decimal_single_format, decimal_double_format, decimal_quad_format, c4x_single_format, c4x_extended_format, real_internal_format): Remove initialization of log2_b. * real.h (i370_single_format, i370_double_format): Declarations removed. * c-cppbuiltin.c (builtin_define_float_constants): Consider the log2_b field to always be one. From-SVN: r124901
Diffstat (limited to 'gcc/real.h')
-rw-r--r--gcc/real.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/real.h b/gcc/real.h
index 6fae225..f050daf 100644
--- a/gcc/real.h
+++ b/gcc/real.h
@@ -126,9 +126,6 @@ struct real_format
/* The radix of the exponent and digits of the significand. */
int b;
- /* log2(b). */
- int log2_b;
-
/* Size of the significand in digits of radix B. */
int p;
@@ -272,8 +269,6 @@ extern const struct real_format mips_quad_format;
extern const struct real_format vax_f_format;
extern const struct real_format vax_d_format;
extern const struct real_format vax_g_format;
-extern const struct real_format i370_single_format;
-extern const struct real_format i370_double_format;
extern const struct real_format c4x_single_format;
extern const struct real_format c4x_extended_format;
extern const struct real_format real_internal_format;