diff options
Diffstat (limited to 'gdb/gdbarch.c')
-rw-r--r-- | gdb/gdbarch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/gdbarch.c b/gdb/gdbarch.c index 5d14aec..d4ea5d3 100644 --- a/gdb/gdbarch.c +++ b/gdb/gdbarch.c @@ -43,7 +43,7 @@ struct gdbarch const struct target_desc * target_desc; /* target specific vector. */ - struct gdbarch_tdep *tdep; + struct gdbarch_tdep_base *tdep; gdbarch_dump_tdep_ftype *dump_tdep; /* per-architecture data-pointers. */ @@ -258,7 +258,7 @@ struct gdbarch struct gdbarch * gdbarch_alloc (const struct gdbarch_info *info, - struct gdbarch_tdep *tdep) + struct gdbarch_tdep_base *tdep) { struct gdbarch *gdbarch; |