[PATCH 4/6] Minor cleanup in linespec.c:add_minsym
Tom Tromey
tom@tromey.com
Wed Jan 8 07:23:24 GMT 2025
This cleans up a 'return' in linespec.c:add_minsym.
---
gdb/linespec.c | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/gdb/linespec.c b/gdb/linespec.c
index 053af6f9bb595294bc9a512a9f465ddc3ff73f65..4f80a42484fef33bed5b4c9f36e78486bbd4f97d 100644
--- a/gdb/linespec.c
+++ b/gdb/linespec.c
@@ -4149,11 +4149,8 @@ add_minsym (struct minimal_symbol *minsym, struct objfile *objfile,
}
/* Exclude data symbols when looking for breakpoint locations. */
- if (!list_mode && !msymbol_is_function (objfile, minsym))
- return;
-
- msyms->emplace_back (minsym, objfile);
- return;
+ if (list_mode || msymbol_is_function (objfile, minsym))
+ msyms->emplace_back (minsym, objfile);
}
/* Search for minimal symbols called NAME. If SEARCH_PSPACE
--
2.46.1
More information about the Gdb-patches
mailing list