diff options
author | Nick Alcock <nick.alcock@oracle.com> | 2019-06-03 11:38:08 +0100 |
---|---|---|
committer | Nick Alcock <nick.alcock@oracle.com> | 2019-06-04 17:05:08 +0100 |
commit | a610aa4f9cf61d38b8e0fe60dfaac078d636089f (patch) | |
tree | 00dfe5377dbe4479dda5a80da62ecb9448e1f5f4 /include/ChangeLog | |
parent | 9186c494a3bb61a55a29ec04aa0d1684a8c46838 (diff) | |
download | gdb-a610aa4f9cf61d38b8e0fe60dfaac078d636089f.zip gdb-a610aa4f9cf61d38b8e0fe60dfaac078d636089f.tar.gz gdb-a610aa4f9cf61d38b8e0fe60dfaac078d636089f.tar.bz2 |
libctf: fix the type of ctf_enum.cte_value
This stops the file format from depending on the size of the host int.
(It does mean that we cannot encode enums with a value > 2^32 on
platforms with an int > 2^32: this will be fixed in the next format
revision.)
include/
* ctf.h (ctf_enum.cte_value): Fix type to int32_t.
Diffstat (limited to 'include/ChangeLog')
-rw-r--r-- | include/ChangeLog | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 1f216b3..f84498b 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2019-06-03 Nick Alcock <nick.alcock@oracle.com> + + * ctf.h (ctf_enum.cte_value): Fix type to int32_t. + 2019-05-29 Nick Alcock <nick.alcock@oracle.com> * ctf-api.h (ctf_sect_t): Drop cts_type, cts_flags, and cts_offset. |