diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/record-full.c | 10 |
2 files changed, 4 insertions, 10 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e817dc7..ac5965a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2017-06-26 Simon Marchi <simon.marchi@ericsson.com> + * record-full.c (netorder16): Remove. + +2017-06-26 Simon Marchi <simon.marchi@ericsson.com> + * common/diagnostics.h: Define macros for GCC. (DIAGNOSTIC_IGNORE_UNUSED_FUNCTION): New macro. * common/vec.h: Include diagnostics.h. diff --git a/gdb/record-full.c b/gdb/record-full.c index 8e774a2..7f6ecc7 100644 --- a/gdb/record-full.c +++ b/gdb/record-full.c @@ -2340,16 +2340,6 @@ netorder32 (uint32_t input) return ret; } -static inline uint16_t -netorder16 (uint16_t input) -{ - uint16_t ret; - - store_unsigned_integer ((gdb_byte *) &ret, sizeof (ret), - BFD_ENDIAN_BIG, input); - return ret; -} - /* Restore the execution log from a core_bfd file. */ static void record_full_restore (void) |