diff options
author | Alan Modra <amodra@gmail.com> | 2021-10-28 12:47:26 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2021-10-28 13:24:37 +1030 |
commit | 42eec46f230cb05873fdc7561057a6ae63d17ce4 (patch) | |
tree | d760e79e5de354b15d49c8caa762ff21543c3125 /bfd/elfxx-mips.c | |
parent | 1cba418d26929e0fa0f9c43b2323093b1c7fa9de (diff) | |
download | gdb-42eec46f230cb05873fdc7561057a6ae63d17ce4.zip gdb-42eec46f230cb05873fdc7561057a6ae63d17ce4.tar.gz gdb-42eec46f230cb05873fdc7561057a6ae63d17ce4.tar.bz2 |
bfd: remove use of INLINE
No need to use anything fancy, plain inline works just as well.
* bfd-in.h (INLINE): Don't define.
* bfd-in2.h: Regenerate.
* aoutx.h: Replace use of INLINE with inline.
* elf-eh-frame.c: Likewise.
* elf32-score7.c: Likewise.
* elfxx-mips.c: Likewise.
* ihex.c: Likewise.
* mach-o.c: Likewise.
* mmo.c: Likewise.
Diffstat (limited to 'bfd/elfxx-mips.c')
-rw-r--r-- | bfd/elfxx-mips.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index e4827fd..4aaa3ea 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -3075,7 +3075,7 @@ gptab_compare (const void *p1, const void *p2) /* Use all 64 bits of a bfd_vma for the computation of a 32-bit hash number. */ -static INLINE hashval_t +static inline hashval_t mips_elf_hash_bfd_vma (bfd_vma addr) { #ifdef BFD64 @@ -7024,7 +7024,7 @@ _bfd_elf_mips_mach (flagword flags) /* Return printable name for ABI. */ -static INLINE char * +static inline char * elf_mips_abi_name (bfd *abfd) { flagword flags; |