diff options
author | Jan Beulich <jbeulich@suse.com> | 2023-12-01 08:29:33 +0100 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2023-12-01 08:29:33 +0100 |
commit | 2d9b910d5612d802b3c68f04ec69b08e356c503e (patch) | |
tree | 81925905484ffb8ae32d25172bd554817e960de5 /gas/subsegs.c | |
parent | 0aa5d0c9e90a2bf26a99a0354ef500e971341de8 (diff) | |
download | gdb-2d9b910d5612d802b3c68f04ec69b08e356c503e.zip gdb-2d9b910d5612d802b3c68f04ec69b08e356c503e.tar.gz gdb-2d9b910d5612d802b3c68f04ec69b08e356c503e.tar.bz2 |
gas: drop unused fields from struct segment_info_struct
user_stuff, dot, and lineno_list_{head,tail} have no users (left), while
bfd_section was only ever written.
Diffstat (limited to 'gas/subsegs.c')
-rw-r--r-- | gas/subsegs.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gas/subsegs.c b/gas/subsegs.c index ae42b4e..a74db52 100644 --- a/gas/subsegs.c +++ b/gas/subsegs.c @@ -61,7 +61,6 @@ alloc_seginfo (segT seg) seginfo = obstack_alloc (¬es, sizeof (*seginfo)); memset (seginfo, 0, sizeof (*seginfo)); - seginfo->bfd_section = seg; bfd_set_section_userdata (seg, seginfo); } /* |