diff options
author | uweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-07-06 13:00:59 +0000 |
---|---|---|
committer | uweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-07-06 13:00:59 +0000 |
commit | b2d1762876ba5bb6106070e8f3cf6440bb43ea0d (patch) | |
tree | 4e1dcb2d9baf3cf0daf694877c633e172acdfbe7 /include | |
parent | 224d1be8f8f43018b693a591fb2b8ca813aa5f1d (diff) | |
download | gcc-b2d1762876ba5bb6106070e8f3cf6440bb43ea0d.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@161867 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/floatformat.h | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index a9fb359cd3d..3fc2fa5e224 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2010-07-06 Ken Werner <ken.werner@de.ibm.com> + + * floatformat.h (floatformat_ieee_half_big): Add declaration. + (floatformat_ieee_half_little): Likewise. + 2010-06-21 Rafael Espindola <espindola@google.com> * plugin-api.h (ld_plugin_set_extra_library_path): New. diff --git a/include/floatformat.h b/include/floatformat.h index c5f60a3cd93..0fc8e75dc8b 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; |