aboutsummaryrefslogtreecommitdiff
path: root/gcc/real.h
diff options
context:
space:
mode:
authorTamar Christina <tnfchris@gcc.gnu.org>2017-06-09 08:10:51 +0000
committerTamar Christina <tnfchris@gcc.gnu.org>2017-06-09 08:10:51 +0000
commit903c723b9d931abb6de044135c3bd4f44559fca7 (patch)
tree501cfa4a6ed13c934e7150ad55732b9b2c606305 /gcc/real.h
parent48e692477f5e3e1e99755b1e964ddd8a51fb5775 (diff)
downloadgcc-903c723b9d931abb6de044135c3bd4f44559fca7.zip
gcc-903c723b9d931abb6de044135c3bd4f44559fca7.tar.gz
gcc-903c723b9d931abb6de044135c3bd4f44559fca7.tar.bz2
Reverted r249005 until PowerPC and AIX issues sorted.
From-SVN: r249050
Diffstat (limited to 'gcc/real.h')
-rw-r--r--gcc/real.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/real.h b/gcc/real.h
index 67fa793..e7248e3 100644
--- a/gcc/real.h
+++ b/gcc/real.h
@@ -161,19 +161,6 @@ struct real_format
bool has_signed_zero;
bool qnan_msb_set;
bool canonical_nan_lsbs_set;
-
- /* This flag indicates whether the format is suitable for the optimized
- code paths for the __builtin_fpclassify function and friends. For
- this, the format must be a base 2 representation with the sign bit as
- the most-significant bit followed by (exp <= 32) exponent bits
- followed by the mantissa bits. It must be possible to interpret the
- bits of the floating-point representation as an integer. NaNs and
- INFs (if available) must be represented by the same schema used by
- IEEE 754. (NaNs must be represented by an exponent with all bits 1,
- any mantissa except all bits 0 and any sign bit. +INF and -INF must be
- represented by an exponent with all bits 1, a mantissa with all bits 0 and
- a sign bit of 0 and 1 respectively.) */
- bool is_binary_ieee_compatible;
const char *name;
};
@@ -524,11 +511,6 @@ extern bool real_isinteger (const REAL_VALUE_TYPE *, HOST_WIDE_INT *);
float string. BUF must be large enough to contain the result. */
extern void get_max_float (const struct real_format *, char *, size_t);
-/* Write into BUF the smallest positive normalized number x,
- such that b**(x-1) is normalized. BUF must be large enough
- to contain the result. */
-extern void get_min_float (const struct real_format *, char *, size_t);
-
#ifndef GENERATOR_FILE
/* real related routines. */
extern wide_int real_to_integer (const REAL_VALUE_TYPE *, bool *, int);