gdb: Remove unused extra_lines variable
authorTsukasa OI <research_trasio@irq.a4lg.com>
Sat, 24 Sep 2022 09:25:57 +0000 (09:25 +0000)
committerTsukasa OI <research_trasio@irq.a4lg.com>
Fri, 30 Sep 2022 04:00:53 +0000 (04:00 +0000)
commitf3700471469ac0f395961e92892bc5d6e17ca177
treeb7a1624ed83e03b552288cd03f3fbc6e5015fe6d
parent511f4ff4d9bcaed1ed53ee64211d7c9f80f07fed
gdb: Remove unused extra_lines variable

Clang generates a warning if there is a variable that is set but not used
otherwise ("-Wunused-but-set-variable").  On the default configuration, it
causes a build failure (unless "--disable-werror" is specified).

The only extra_lines use in arrange_linetable function is removed on the
commit 558802e4d1c5dcbd0df7d2c6ef62a6deac247a2f
("gdb: change subfile::line_vector to an std::vector").  So, this variable
should be removed to prevent a build failure.
gdb/xcoffread.c