diff options
Diffstat (limited to 'gdb/gdbarch.py')
-rwxr-xr-x | gdb/gdbarch.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/gdbarch.py b/gdb/gdbarch.py index 8956a9c..bb08081 100755 --- a/gdb/gdbarch.py +++ b/gdb/gdbarch.py @@ -267,7 +267,7 @@ with open("gdbarch.c", "w") as f: print(f" {c.type} {c.name};", file=f) print(file=f) print(" /* target specific vector. */", file=f) - print(" struct gdbarch_tdep *tdep;", file=f) + print(" struct gdbarch_tdep_base *tdep;", file=f) print(" gdbarch_dump_tdep_ftype *dump_tdep;", file=f) print(file=f) print(" /* per-architecture data-pointers. */", file=f) @@ -290,7 +290,7 @@ with open("gdbarch.c", "w") as f: print(file=f) print("struct gdbarch *", file=f) print("gdbarch_alloc (const struct gdbarch_info *info,", file=f) - print(" struct gdbarch_tdep *tdep)", file=f) + print(" struct gdbarch_tdep_base *tdep)", file=f) print("{", file=f) print(" struct gdbarch *gdbarch;", file=f) print("", file=f) |