mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-01 20:12:01 +08:00
* linespec.c: #include "stack.h".
(decode_line_with_current_source): Moved here from symtab.c and renamed from decode_line_spec. All callers updated. (decode_line_with_last_displayed): Moved here from breakpoint.c and renamed from decode_line_spec_1. All callers updated. * linespec.h (decode_line_with_current_source): Move declaration here from symtab.h and renamed from decode_line_spec. (decode_line_with_last_displayed): Move declaration here from symtab.h and renamed from decode_line_spec_1. * macrocmd.c: #include "linespec.h". * symtab.c: Remove #include "linespec.h".
This commit is contained in:
@ -26,6 +26,7 @@
|
||||
#include "command.h"
|
||||
#include "gdbcmd.h"
|
||||
#include "gdb_string.h"
|
||||
#include "linespec.h"
|
||||
|
||||
|
||||
/* The `macro' prefix command. */
|
||||
@ -282,7 +283,8 @@ info_macros_command (char *args, int from_tty)
|
||||
ms = default_macro_scope ();
|
||||
else
|
||||
{
|
||||
struct symtabs_and_lines sals = decode_line_spec (args, 0);
|
||||
struct symtabs_and_lines sals =
|
||||
decode_line_with_current_source (args, 0);
|
||||
|
||||
if (sals.nelts)
|
||||
ms = sal_macro_scope (sals.sals[0]);
|
||||
|
Reference in New Issue
Block a user