mirror of git://gcc.gnu.org/git/gcc.git
floatformat.h (floatformat_ibm_long_double): Delete.
include/ * floatformat.h (floatformat_ibm_long_double): Delete. (floatformat_ibm_long_double_big): Declare. (floatformat_ibm_long_double_little): Declare. libiberty/ * floatformat.c (floatformat_ibm_long_double): Rename to.. (floatformat_ibm_long_double_big): ..this. (floatformat_ibm_long_double_little): New. From-SVN: r201869
This commit is contained in:
parent
6a56e2dd33
commit
a98cbc3694
|
|
@ -1,3 +1,9 @@
|
||||||
|
2013-08-20 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
|
* floatformat.h (floatformat_ibm_long_double): Delete.
|
||||||
|
(floatformat_ibm_long_double_big): Declare.
|
||||||
|
(floatformat_ibm_long_double_little): Declare.
|
||||||
|
|
||||||
2013-08-19 Dehao Chen <dehao@google.com>
|
2013-08-19 Dehao Chen <dehao@google.com>
|
||||||
|
|
||||||
* dwarf2.def (DW_AT_GNU_discriminator): New attribute.
|
* dwarf2.def (DW_AT_GNU_discriminator): New attribute.
|
||||||
|
|
|
||||||
|
|
@ -128,7 +128,8 @@ extern const struct floatformat floatformat_ia64_spill_little;
|
||||||
extern const struct floatformat floatformat_ia64_quad_big;
|
extern const struct floatformat floatformat_ia64_quad_big;
|
||||||
extern const struct floatformat floatformat_ia64_quad_little;
|
extern const struct floatformat floatformat_ia64_quad_little;
|
||||||
/* IBM long double (double+double). */
|
/* IBM long double (double+double). */
|
||||||
extern const struct floatformat floatformat_ibm_long_double;
|
extern const struct floatformat floatformat_ibm_long_double_big;
|
||||||
|
extern const struct floatformat floatformat_ibm_long_double_little;
|
||||||
|
|
||||||
/* Convert from FMT to a double.
|
/* Convert from FMT to a double.
|
||||||
FROM is the address of the extended float.
|
FROM is the address of the extended float.
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,9 @@
|
||||||
|
2013-08-20 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
|
* floatformat.c (floatformat_ibm_long_double): Rename to..
|
||||||
|
(floatformat_ibm_long_double_big): ..this.
|
||||||
|
(floatformat_ibm_long_double_little): New.
|
||||||
|
|
||||||
2013-07-09 Tristan Gingold <gingold@adacore.com>
|
2013-07-09 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
* makefile.vms (OBJS): Add dwarfnames.obj
|
* makefile.vms (OBJS): Add dwarfnames.obj
|
||||||
|
|
|
||||||
|
|
@ -371,14 +371,23 @@ floatformat_ibm_long_double_is_valid (const struct floatformat *fmt,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const struct floatformat floatformat_ibm_long_double =
|
const struct floatformat floatformat_ibm_long_double_big =
|
||||||
{
|
{
|
||||||
floatformat_big, 128, 0, 1, 11, 1023, 2047, 12, 52,
|
floatformat_big, 128, 0, 1, 11, 1023, 2047, 12, 52,
|
||||||
floatformat_intbit_no,
|
floatformat_intbit_no,
|
||||||
"floatformat_ibm_long_double",
|
"floatformat_ibm_long_double_big",
|
||||||
floatformat_ibm_long_double_is_valid,
|
floatformat_ibm_long_double_is_valid,
|
||||||
&floatformat_ieee_double_big
|
&floatformat_ieee_double_big
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const struct floatformat floatformat_ibm_long_double_little =
|
||||||
|
{
|
||||||
|
floatformat_little, 128, 0, 1, 11, 1023, 2047, 12, 52,
|
||||||
|
floatformat_intbit_no,
|
||||||
|
"floatformat_ibm_long_double_little",
|
||||||
|
floatformat_ibm_long_double_is_valid,
|
||||||
|
&floatformat_ieee_double_little
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
#ifndef min
|
#ifndef min
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue