diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2022-01-28 10:28:57 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2022-04-11 10:46:07 -0400 |
commit | 60f62e2b83eb362c5063247235c111a59e13cad1 (patch) | |
tree | c74a83d20a05ab710391425f072f79e31276db5a /gdb/breakpoint.c | |
parent | 4aeddc50d7a06294cc124dfd8f43992ffa0b7382 (diff) | |
download | gdb-60f62e2b83eb362c5063247235c111a59e13cad1.zip gdb-60f62e2b83eb362c5063247235c111a59e13cad1.tar.gz gdb-60f62e2b83eb362c5063247235c111a59e13cad1.tar.bz2 |
gdb: remove MSYMBOL_TYPE macro
Add a getter and a setter for a minimal symbol's type. Remove the
corresponding macro and adjust all callers.
Change-Id: I89900df5ffa5687133fe1a16b2e0d4684e67a77d
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index af7eb6c..1a227e5 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -3439,8 +3439,8 @@ create_std_terminate_master_breakpoint (void) struct bound_minimal_symbol m; m = lookup_minimal_symbol (func_name, NULL, objfile); - if (m.minsym == NULL || (MSYMBOL_TYPE (m.minsym) != mst_text - && MSYMBOL_TYPE (m.minsym) != mst_file_text)) + if (m.minsym == NULL || (m.minsym->type () != mst_text + && m.minsym->type () != mst_file_text)) { /* Prevent future lookups in this objfile. */ bp_objfile_data->terminate_msym.minsym = &msym_not_found; @@ -7175,8 +7175,8 @@ set_breakpoint_location_function (struct bp_location *loc) const char *function_name; if (loc->msymbol != NULL - && (MSYMBOL_TYPE (loc->msymbol) == mst_text_gnu_ifunc - || MSYMBOL_TYPE (loc->msymbol) == mst_data_gnu_ifunc)) + && (loc->msymbol->type () == mst_text_gnu_ifunc + || loc->msymbol->type () == mst_data_gnu_ifunc)) { struct breakpoint *b = loc->owner; |