diff options
author | Maxim Kuvyrkov <maxim@kugelworks.com> | 2009-11-17 17:59:42 +0000 |
---|---|---|
committer | Maxim Kuvyrkov <maxim@kugelworks.com> | 2009-11-17 17:59:42 +0000 |
commit | 0c85e18e5f5ef8e982b64096626a03e72b04fac0 (patch) | |
tree | bb8fae2279491bd08e5fc048bac7efad1a9e8c17 /gdb/m68k-tdep.c | |
parent | 9ac544cece0ff0ae2782d70049c8c8f0a3924bf7 (diff) | |
download | gdb-0c85e18e5f5ef8e982b64096626a03e72b04fac0.zip gdb-0c85e18e5f5ef8e982b64096626a03e72b04fac0.tar.gz gdb-0c85e18e5f5ef8e982b64096626a03e72b04fac0.tar.bz2 |
2009-11-17 Daniel Jacobowitz <dan@codesourcery.com>
* m68k-tdep.c (m68k_gdbarch_init): Reuse previous initialization.
Diffstat (limited to 'gdb/m68k-tdep.c')
-rw-r--r-- | gdb/m68k-tdep.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/m68k-tdep.c b/gdb/m68k-tdep.c index 9cbbbb3..87b3556 100644 --- a/gdb/m68k-tdep.c +++ b/gdb/m68k-tdep.c @@ -1163,6 +1163,13 @@ m68k_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches) break; } + if (best_arch != NULL) + { + if (tdesc_data != NULL) + tdesc_data_cleanup (tdesc_data); + return best_arch->gdbarch; + } + tdep = xzalloc (sizeof (struct gdbarch_tdep)); gdbarch = gdbarch_alloc (&info, tdep); tdep->fpregs_present = has_fp; |