diff options
author | Alan Modra <amodra@gmail.com> | 2022-07-05 13:26:38 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2022-07-09 21:23:00 +0930 |
commit | ed2917de68fe1ae3f279cef3b48c6464c75e9d72 (patch) | |
tree | ba4bd01e9de24ec8372dc32cb8041fe5bb2ebdc3 /gas/config/tc-v850.h | |
parent | af3d7ab74f0aff2eb2af68d0d1df2e27e5757ecd (diff) | |
download | fsf-binutils-gdb-ed2917de68fe1ae3f279cef3b48c6464c75e9d72.zip fsf-binutils-gdb-ed2917de68fe1ae3f279cef3b48c6464c75e9d72.tar.gz fsf-binutils-gdb-ed2917de68fe1ae3f279cef3b48c6464c75e9d72.tar.bz2 |
gas: rename md_end to md_finish
Currently md_end is typically used for some final actions rather than
freeing memory like other *_end functions. Rename it to md_finish,
and rename target implementation. The renaming of target functions
makes it possible to find them all with "grep md_finish",
eg. md_mips_end is renamed to mips_md_finish, not md_mips_finish.
This patch leaves a number of md_end functions unchanged, those that
either do nothing or deallocate memory, and calls them late.
The idea here is that target maintainers implement md_end functions to
tidy memory, if anyone cares. Freeing persistent memory in gas is
not at all important, except that it can hide more important memory
leaks, those that happen once per some frequent gas operation, amongst
these unimportant memory leaks.
* as.c (main): Rename md_end to md_finish.
* config/tc-alpha.c, * config/tc-alpha.h,
* config/tc-arc.c, * config/tc-arc.h,
* config/tc-arm.c, * config/tc-arm.h,
* config/tc-csky.c, * config/tc-csky.h,
* config/tc-ia64.c, * config/tc-ia64.h,
* config/tc-mcore.c, * config/tc-mcore.h,
* config/tc-mips.c, * config/tc-mips.h,
* config/tc-mmix.c, * config/tc-mmix.h,
* config/tc-msp430.c, * config/tc-msp430.h,
* config/tc-nds32.c, * config/tc-nds32.h,
* config/tc-ppc.c, * config/tc-ppc.h,
* config/tc-pru.c, * config/tc-pru.h,
* config/tc-riscv.c, * config/tc-riscv.h,
* config/tc-s390.c, * config/tc-s390.h,
* config/tc-sparc.c, * config/tc-sparc.h,
* config/tc-tic4x.c, * config/tc-tic4x.h,
* config/tc-tic6x.c, * config/tc-tic6x.h,
* config/tc-v850.c, * config/tc-v850.h,
* config/tc-xtensa.c, * config/tc-xtensa.h,
* config/tc-z80.c, * config/tc-z80.h: Similarly.
* output-file.c (output_file_close): Call md_end.
Diffstat (limited to 'gas/config/tc-v850.h')
-rw-r--r-- | gas/config/tc-v850.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-v850.h b/gas/config/tc-v850.h index 7480b58..3397d98 100644 --- a/gas/config/tc-v850.h +++ b/gas/config/tc-v850.h @@ -85,5 +85,5 @@ extern long v850_pcrel_from_section (struct fix *, asection *); #define TC_FIX_TYPE void * #define TC_INIT_FIX_DATA(fixP) (fixP)->tc_fix_data = NULL -#define md_end v850_md_end -extern void v850_md_end (void); +#define md_finish v850_md_finish +extern void v850_md_finish (void); |