diff options
author | Alan Modra <amodra@gmail.com> | 2020-05-20 22:49:01 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2020-05-21 10:45:33 +0930 |
commit | 9fbb53c7c8d54ec90dc308cfb50902b90900b946 (patch) | |
tree | 8515c6ad77b83d750fc107937f06c8816c4dfc2e /gas/config/tc-aarch64.c | |
parent | 9db70fc3656064555873332003d842b880ca470c (diff) | |
download | gdb-9fbb53c7c8d54ec90dc308cfb50902b90900b946.zip gdb-9fbb53c7c8d54ec90dc308cfb50902b90900b946.tar.gz gdb-9fbb53c7c8d54ec90dc308cfb50902b90900b946.tar.bz2 |
Replace "if (x) free (x)" with "free (x)", gas
* atof-generic.c: Replace "if (x) free (x)" with "free (x)"
throughout.
* config/obj-elf.c: Likewise.
* config/tc-aarch64.c: Likewise.
* config/tc-arm.c: Likewise.
* config/tc-m68k.c: Likewise.
* config/tc-nios2.c: Likewise.
* config/tc-tic30.c: Likewise.
* ecoff.c: Likewise.
* read.c: Likewise.
* stabs.c: Likewise.
* symbols.c: Likewise.
* testsuite/gas/all/test-gen.c: Likewise.
Diffstat (limited to 'gas/config/tc-aarch64.c')
-rw-r--r-- | gas/config/tc-aarch64.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c index da786ba..728fd10 100644 --- a/gas/config/tc-aarch64.c +++ b/gas/config/tc-aarch64.c @@ -8269,8 +8269,7 @@ md_apply_fix (fixS * fixP, valueT * valP, segT seg) /* Free the allocated the struct aarch64_inst. N.B. currently there are very limited number of fix-up types actually use this field, so the impact on the performance should be minimal . */ - if (fixP->tc_fix_data.inst != NULL) - free (fixP->tc_fix_data.inst); + free (fixP->tc_fix_data.inst); return; } @@ -9557,8 +9556,7 @@ aarch64_elf_copy_symbol_attributes (symbolS *dest, symbolS *src) } else { - if (destelf->size != NULL) - free (destelf->size); + free (destelf->size); destelf->size = NULL; } S_SET_SIZE (dest, S_GET_SIZE (src)); |