diff options
author | Tom Tromey <tom@tromey.com> | 2023-01-19 17:50:30 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2023-02-19 12:51:06 -0700 |
commit | 7bf30a4447713192eb49be43d7f66630d570652b (patch) | |
tree | 0aed300f918b6a555dfaa77b67bb9b4a5f52c0e1 /gdb/findvar.c | |
parent | cade9c8a459e4fd2f8a781eed21991e2487f90ee (diff) | |
download | binutils-7bf30a4447713192eb49be43d7f66630d570652b.zip binutils-7bf30a4447713192eb49be43d7f66630d570652b.tar.gz binutils-7bf30a4447713192eb49be43d7f66630d570652b.tar.bz2 |
Convert block_static_link to method
This converts block_static_link to be a method. This was mostly
written by script.
Diffstat (limited to 'gdb/findvar.c')
-rw-r--r-- | gdb/findvar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/findvar.c b/gdb/findvar.c index 806f41d..60b5ca3 100644 --- a/gdb/findvar.c +++ b/gdb/findvar.c @@ -498,7 +498,7 @@ get_hosting_frame (struct symbol *var, const struct block *var_block, else if (frame_block->function ()) { const struct dynamic_prop *static_link - = block_static_link (frame_block); + = frame_block->static_link (); int could_climb_up = 0; if (static_link != NULL) |