* 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
+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>
* unroll.c (verify_addresses): Remove.
EMULONG adjustment;
};
+#ifdef IEEE
/* IEEE float (24 bits). */
static const struct ieee_format ieee_24 =
{
TFmode,
0
};
+#endif
+#ifdef DEC
/* DEC F float (24 bits). */
static const struct ieee_format dec_f =
{
TFmode,
EXONE - 16385
};
+#endif
extern int extra_warnings;
extern const UEMUSHORT ezero[NE], ehalf[NE], eone[NE], etwo[NE];