summaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2023-04-06 06:56:11 -0600
committerTom Tromey <tromey@adacore.com>2023-05-05 13:55:59 -0600
commit28b59491b896a0d0af2946533a1e8f122acda408 (patch)
tree4ae902031025672ab79876a4699ac3c5272e5f85 /gdb
parent100c7a99a5d4c30bb73d49a65eb45d1039646eaa (diff)
downloadbinutils-gdb-28b59491b896a0d0af2946533a1e8f122acda408.tar.gz
Filter out types from DAP scopes request
The DAP scopes request examines the symbols in a block tree, but neglects to omit types. This patch fixes the problem.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/python/lib/gdb/dap/scopes.py2
-rw-r--r--gdb/testsuite/gdb.dap/scopes.c12
2 files changed, 7 insertions, 7 deletions
diff --git a/gdb/python/lib/gdb/dap/scopes.py b/gdb/python/lib/gdb/dap/scopes.py
index 9ab454aa57b..be4f8fc28a0 100644
--- a/gdb/python/lib/gdb/dap/scopes.py
+++ b/gdb/python/lib/gdb/dap/scopes.py
@@ -41,7 +41,7 @@ def _block_vars(block):
for var in block:
if var.is_argument:
args.append(var)
- else:
+ elif var.is_variable or var.is_constant:
locs.append(var)
if block.function is not None:
break
diff --git a/gdb/testsuite/gdb.dap/scopes.c b/gdb/testsuite/gdb.dap/scopes.c
index 7b35036cce1..ce87db1f13d 100644
--- a/gdb/testsuite/gdb.dap/scopes.c
+++ b/gdb/testsuite/gdb.dap/scopes.c
@@ -15,14 +15,14 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
-struct dei_struct
-{
- int x;
- int more[5];
-};
-
int main ()
{
+ struct dei_struct
+ {
+ int x;
+ int more[5];
+ };
+
struct dei_struct dei = { 2, { 3, 5, 7, 11, 13 } };
static int scalar = 23;