aboutsummaryrefslogtreecommitdiff
path: root/opcodes/tic4x-dis.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2020-05-20 22:47:29 +0930
committerAlan Modra <amodra@gmail.com>2020-05-21 10:45:33 +0930
commitd96bf37ba8360320db4d531008634b3f61af06f5 (patch)
treefb7a6fcf4bcf5dd70cc23cabdfd04c3b6c7dbb66 /opcodes/tic4x-dis.c
parent5e2ab6125485bede5611187f2df4b26b04026b80 (diff)
downloadgdb-d96bf37ba8360320db4d531008634b3f61af06f5.zip
gdb-d96bf37ba8360320db4d531008634b3f61af06f5.tar.gz
gdb-d96bf37ba8360320db4d531008634b3f61af06f5.tar.bz2
Replace "if (x) free (x)" with "free (x)", opcodes
cpu/ * mep.opc (mep_cgen_expand_macros_and_parse_operand): Replace "if (x) free (x)" with "free (x)". opcodes/ * arc-ext.c: Replace "if (x) free (x)" with "free (x)" throughout. * sparc-dis.c: Likewise. * tic4x-dis.c: Likewise. * xtensa-dis.c: Likewise. * bpf-desc.c: Regenerate. * epiphany-desc.c: Regenerate. * fr30-desc.c: Regenerate. * frv-desc.c: Regenerate. * ip2k-desc.c: Regenerate. * iq2000-desc.c: Regenerate. * lm32-desc.c: Regenerate. * m32c-desc.c: Regenerate. * m32r-desc.c: Regenerate. * mep-asm.c: Regenerate. * mep-desc.c: Regenerate. * mt-desc.c: Regenerate. * or1k-desc.c: Regenerate. * xc16x-desc.c: Regenerate. * xstormy16-desc.c: Regenerate.
Diffstat (limited to 'opcodes/tic4x-dis.c')
-rw-r--r--opcodes/tic4x-dis.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/opcodes/tic4x-dis.c b/opcodes/tic4x-dis.c
index a99b52a..683f22e 100644
--- a/opcodes/tic4x-dis.c
+++ b/opcodes/tic4x-dis.c
@@ -695,16 +695,10 @@ tic4x_disassemble (unsigned long pc,
tic4x_version = info->mach;
/* Don't stash anything from a previous call using a different
machine. */
- if (optab)
- {
- free (optab);
- optab = NULL;
- }
- if (optab_special)
- {
- free (optab_special);
- optab_special = NULL;
- }
+ free (optab);
+ optab = NULL;
+ free (optab_special);
+ optab_special = NULL;
registernames[REG_R0] = NULL;
}