diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2010-07-06 12:56:24 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2010-07-06 12:56:24 +0000 |
commit | 41ee3188d725d05c75654b04f64a62b7bb498ef8 (patch) | |
tree | 8f2aa5c8ad54723f253df5dafc9fdf79898e384c /include/floatformat.h | |
parent | f599b05497c420bab00850b53a2f3307bb80ea41 (diff) | |
download | cygnal-41ee3188d725d05c75654b04f64a62b7bb498ef8.tar.gz cygnal-41ee3188d725d05c75654b04f64a62b7bb498ef8.tar.bz2 cygnal-41ee3188d725d05c75654b04f64a62b7bb498ef8.zip |
include/ChangeLog:
2010-07-06 Ken Werner <ken.werner@de.ibm.com>
* floatformat.h (floatformat_ieee_half_big): Add declaration.
(floatformat_ieee_half_little): Likewise.
libiberty/ChangeLog:
2010-07-06 Ken Werner <ken.werner@de.ibm.com>
* floatformat.c (floatformat_ieee_half_big): New variable.
(floatformat_ieee_half_little): Likewise.
gdb/ChangeLog:
2010-07-06 Ken Werner <ken.werner@de.ibm.com>
* gdbtypes.h (floatformats_ieee_half): Add declaration.
* gdbtypes.c (floatformats_ieee_half): New variable.
* doublest.c (floatformat_from_length): Set format to
gdbarch_half_format if length matches.
* gdbarch.sh (half_bit): New architecture method.
(half_format): Likewise.
* gdbarch.h: Regenerate.
* gdbarch.c: Likewise.
Diffstat (limited to 'include/floatformat.h')
-rw-r--r-- | include/floatformat.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/floatformat.h b/include/floatformat.h index c5f60a3cd..0fc8e75dc 100644 --- a/include/floatformat.h +++ b/include/floatformat.h @@ -96,6 +96,8 @@ struct floatformat /* floatformats for IEEE single and double, big and little endian. */ +extern const struct floatformat floatformat_ieee_half_big; +extern const struct floatformat floatformat_ieee_half_little; extern const struct floatformat floatformat_ieee_single_big; extern const struct floatformat floatformat_ieee_single_little; extern const struct floatformat floatformat_ieee_double_big; |