mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 09:08:59 +00:00
gdb: remove SYMTAB_OBJFILE macro
Remove the macro, replace with an equivalent method. Change-Id: I8f9ecd290ad28502e53c1ceca5006ba78bf042eb
This commit is contained in:
@@ -11388,8 +11388,8 @@ is_known_support_routine (struct frame_info *frame)
|
||||
re_comp (known_runtime_file_name_patterns[i]);
|
||||
if (re_exec (lbasename (sal.symtab->filename)))
|
||||
return 1;
|
||||
if (SYMTAB_OBJFILE (sal.symtab) != NULL
|
||||
&& re_exec (objfile_name (SYMTAB_OBJFILE (sal.symtab))))
|
||||
if (sal.symtab->objfile () != NULL
|
||||
&& re_exec (objfile_name (sal.symtab->objfile ())))
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user