diff options
author | John Baldwin <jhb@FreeBSD.org> | 2020-03-05 14:27:08 -0800 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2020-03-11 17:48:49 +1030 |
commit | 119789424b62321e74a18fc1c088ebf479d999c4 (patch) | |
tree | 53d3767bbe3ef6d3a9dc677e9956315c2cc241ed /libctf | |
parent | 435edf0bf231240ccecb474b74ebb49dc8db2633 (diff) | |
download | gdb-119789424b62321e74a18fc1c088ebf479d999c4.zip gdb-119789424b62321e74a18fc1c088ebf479d999c4.tar.gz gdb-119789424b62321e74a18fc1c088ebf479d999c4.tar.bz2 |
libctf: Mark bswap_identity_64 inline function as static.
This is similar to cbbbc402e059ee345cb781d3ceb757ae1cc679ee and fixes
a link error with duplicately defined symbols on FreeBSD.
libctf/ChangeLog:
* swap.h (bswap_identity_64): Make static.
Diffstat (limited to 'libctf')
-rw-r--r-- | libctf/ChangeLog | 4 | ||||
-rw-r--r-- | libctf/swap.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libctf/ChangeLog b/libctf/ChangeLog index 9da5827..5f7bdf3 100644 --- a/libctf/ChangeLog +++ b/libctf/ChangeLog @@ -1,3 +1,7 @@ +2020-03-11 John Baldwin <jhb@FreeBSD.org> + + * swap.h (bswap_identity_64): Make static. + 2020-01-18 Nick Clifton <nickc@redhat.com> Binutils 2.34 branch created. diff --git a/libctf/swap.h b/libctf/swap.h index f8cc822..d526f7e 100644 --- a/libctf/swap.h +++ b/libctf/swap.h @@ -43,7 +43,7 @@ bswap_32 (uint32_t v) | ((v & 0x000000ff) << 24)); } -inline uint64_t +static inline uint64_t bswap_identity_64 (uint64_t v) { return v; |