aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2010-07-06 12:56:24 +0000
committerUlrich Weigand <uweigand@de.ibm.com>2010-07-06 12:56:24 +0000
commitf9e9243aad66a7923e30c61cd1749623fa568f79 (patch)
treec7ccf41dd950d38c46f54b59a3641f08c880891e /include
parent50248c890f1bc82c6e1751bd549da7580c60f098 (diff)
downloadfsf-binutils-gdb-f9e9243aad66a7923e30c61cd1749623fa568f79.zip
fsf-binutils-gdb-f9e9243aad66a7923e30c61cd1749623fa568f79.tar.gz
fsf-binutils-gdb-f9e9243aad66a7923e30c61cd1749623fa568f79.tar.bz2
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')
-rw-r--r--include/ChangeLog5
-rw-r--r--include/floatformat.h2
2 files changed, 7 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 4fb2a44..91b2edb 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-29 Alan Modra <amodra@gmail.com>
* dis-asm.h: Remove references to maxq.
diff --git a/include/floatformat.h b/include/floatformat.h
index c5f60a3..0fc8e75 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;