aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbarch.py
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2023-01-17 12:45:11 -0700
committerTom Tromey <tromey@adacore.com>2023-01-17 12:45:11 -0700
commit2c01dcdb5a2de09a5b36655f1a90d9471278d8b3 (patch)
treef96ccdf532d971ed87b04ea3c3cbee4cc80f7688 /gdb/gdbarch.py
parentef497b741139492a40bee9132d29cb861926ca9c (diff)
downloadbinutils-2c01dcdb5a2de09a5b36655f1a90d9471278d8b3.zip
binutils-2c01dcdb5a2de09a5b36655f1a90d9471278d8b3.tar.gz
binutils-2c01dcdb5a2de09a5b36655f1a90d9471278d8b3.tar.bz2
Remove two unused fields from gdbarch
When I converted gdbarch to use the registry, I forgot to remove the two fields that were used to implement the previous approach. This patch removes them. Tested by rebuilding.
Diffstat (limited to 'gdb/gdbarch.py')
-rwxr-xr-xgdb/gdbarch.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/gdbarch.py b/gdb/gdbarch.py
index 7dc7938..3ebc359 100755
--- a/gdb/gdbarch.py
+++ b/gdb/gdbarch.py
@@ -289,10 +289,6 @@ with open("gdbarch.c", "w") as f:
print(" gdbarch_tdep_up tdep;", file=f)
print(" gdbarch_dump_tdep_ftype *dump_tdep = nullptr;", file=f)
print(file=f)
- print(" /* per-architecture data-pointers. */", file=f)
- print(" unsigned nr_data = 0;", file=f)
- print(" void **data = nullptr;", file=f)
- print(file=f)
for c in filter(not_info, components):
if isinstance(c, Function):
print(f" gdbarch_{c.name}_ftype *", file=f, end="")