Commit 0cd2fb44 by John David Anglin Committed by John David Anglin

real.c (ieee_24, [...]): Define only if the floating point format of the target is IEEE.

	* real.c (ieee_24, ieee_53, ieee_64, ieee_113): Define only if the
	floating point format of the target is IEEE.
	* (dec_f, dec_d, dec_g, dec_h): Define only if the floating point
	format of the target is DEC.

From-SVN: r55859
parent b642261e
2002-07-29 John David Anglin <dave@hiauly1.hia.nrc>
* real.c (ieee_24, ieee_53, ieee_64, ieee_113): Define only if the
floating point format of the target is IEEE.
* (dec_f, dec_d, dec_g, dec_h): Define only if the floating point
format of the target is DEC.
2002-07-29 Richard Henderson <rth@redhat.com> 2002-07-29 Richard Henderson <rth@redhat.com>
* unroll.c (verify_addresses): Remove. * unroll.c (verify_addresses): Remove.
......
...@@ -321,6 +321,7 @@ struct ieee_format ...@@ -321,6 +321,7 @@ struct ieee_format
EMULONG adjustment; EMULONG adjustment;
}; };
#ifdef IEEE
/* IEEE float (24 bits). */ /* IEEE float (24 bits). */
static const struct ieee_format ieee_24 = static const struct ieee_format ieee_24 =
{ {
...@@ -360,7 +361,9 @@ static const struct ieee_format ieee_113 = ...@@ -360,7 +361,9 @@ static const struct ieee_format ieee_113 =
TFmode, TFmode,
0 0
}; };
#endif
#ifdef DEC
/* DEC F float (24 bits). */ /* DEC F float (24 bits). */
static const struct ieee_format dec_f = static const struct ieee_format dec_f =
{ {
...@@ -400,6 +403,7 @@ static const struct ieee_format dec_h = ...@@ -400,6 +403,7 @@ static const struct ieee_format dec_h =
TFmode, TFmode,
EXONE - 16385 EXONE - 16385
}; };
#endif
extern int extra_warnings; extern int extra_warnings;
extern const UEMUSHORT ezero[NE], ehalf[NE], eone[NE], etwo[NE]; extern const UEMUSHORT ezero[NE], ehalf[NE], eone[NE], etwo[NE];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment