diff options
author | Felix Willgerodt <felix.willgerodt@intel.com> | 2020-09-10 14:29:51 +0200 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2020-09-11 11:32:00 -0700 |
commit | dae7c5a44424e8a2ff136085b07a852fc578e24e (patch) | |
tree | c78a2d5366982e6b8c13a6d79ff1baaf3b0ddf71 /include | |
parent | edc7a80a9c04667dfa74f90f74bd39827bc372b7 (diff) | |
download | gdb-dae7c5a44424e8a2ff136085b07a852fc578e24e.zip gdb-dae7c5a44424e8a2ff136085b07a852fc578e24e.tar.gz gdb-dae7c5a44424e8a2ff136085b07a852fc578e24e.tar.bz2 |
Sync include, libiberty with GCC.
include:
2020-09-10 Felix Willgerodt <felix.willgerodt@intel.com>
Sync with GCC
2020-08-17 Felix Willgerodt <felix.willgerodt@intel.com>
* floatformat.h (floatformat_bfloat16_big): New.
(floatformat_bfloat16_little): New.
libiberty:
2020-09-10 Felix Willgerodt <felix.willgerodt@intel.com>
Sync with GCC
2020-08-17 Felix Willgerodt <felix.willgerodt@intel.com>
* floatformat.c (floatformat_bfloat16_big): New.
(floatformat_bfloat16_little): New.
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 8 | ||||
-rw-r--r-- | include/floatformat.h | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index c9d2749..c8a90cf 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,11 @@ +2020-09-11 Felix Willgerodt <felix.willgerodt@intel.com> + + Sync with GCC + 2020-09-08 Felix Willgerodt <felix.willgerodt@intel.com> + + * floatformat.h (floatformat_bfloat16_big): New. + (floatformat_bfloat16_little): New. + 2020-09-12 Cooper Qu <cooper.qu@linux.alibaba.com> * opcode/csky.h (CSKYV1_ISA_E1): Convert to bfd_uint64_t type. diff --git a/include/floatformat.h b/include/floatformat.h index ce8d6d4..630fade 100644 --- a/include/floatformat.h +++ b/include/floatformat.h @@ -133,6 +133,9 @@ extern const struct floatformat floatformat_ia64_quad_little; /* IBM long double (double+double). */ extern const struct floatformat floatformat_ibm_long_double_big; extern const struct floatformat floatformat_ibm_long_double_little; +/* bfloat16. */ +extern const struct floatformat floatformat_bfloat16_big; +extern const struct floatformat floatformat_bfloat16_little; /* Convert from FMT to a double. FROM is the address of the extended float. |