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/elf-eh-frame.c | |
parent | 1cba418d26929e0fa0f9c43b2323093b1c7fa9de (diff) | |
download | binutils-42eec46f230cb05873fdc7561057a6ae63d17ce4.zip binutils-42eec46f230cb05873fdc7561057a6ae63d17ce4.tar.gz binutils-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/elf-eh-frame.c')
-rw-r--r-- | bfd/elf-eh-frame.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elf-eh-frame.c b/bfd/elf-eh-frame.c index b5ec814..24c6e2c 100644 --- a/bfd/elf-eh-frame.c +++ b/bfd/elf-eh-frame.c @@ -282,7 +282,7 @@ cie_compute_hash (struct cie *c) /* Return the number of extra bytes that we'll be inserting into ENTRY's augmentation string. */ -static INLINE unsigned int +static inline unsigned int extra_augmentation_string_bytes (struct eh_cie_fde *entry) { unsigned int size = 0; @@ -298,7 +298,7 @@ extra_augmentation_string_bytes (struct eh_cie_fde *entry) /* Likewise ENTRY's augmentation data. */ -static INLINE unsigned int +static inline unsigned int extra_augmentation_data_bytes (struct eh_cie_fde *entry) { unsigned int size = 0; |