diff options
author | Tom Tromey <tromey@redhat.com> | 2011-04-04 17:41:07 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2011-04-04 17:41:07 +0000 |
commit | 58438ac18761353e6d8461c914992071d4fcb1d3 (patch) | |
tree | 090b850620b6091db99fdb84af32f056a48c18cd /gdb/cli | |
parent | a3293649cdf2585cbe25d9a742b84b2e7bd6111c (diff) | |
download | gdb-58438ac18761353e6d8461c914992071d4fcb1d3.zip gdb-58438ac18761353e6d8461c914992071d4fcb1d3.tar.gz gdb-58438ac18761353e6d8461c914992071d4fcb1d3.tar.bz2 |
* tracepoint.c (scope_info): Update.
* symtab.c (decode_line_spec): Update.
* python/python.c (gdbpy_decode_line): Update.
* linespec.h (decode_line_1): Update.
* linespec.c (decode_line_1): Remove 'not_found_ptr' argument.
(decode_compound, find_method, symtab_from_filename)
(decode_variable): Likewise.
* cli/cli-cmds.c (edit_command): Update.
(list_command): Update.
* breakpoint.c (parse_breakpoint_sals): Remove 'not_found_ptr'
argument.
(create_breakpoint): Update.
(until_break_command): Update.
(addr_string_to_sals): Update.
(decode_line_spec_1): Update.
Diffstat (limited to 'gdb/cli')
-rw-r--r-- | gdb/cli/cli-cmds.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/cli/cli-cmds.c b/gdb/cli/cli-cmds.c index 0fc5efc..7fd2f50 100644 --- a/gdb/cli/cli-cmds.c +++ b/gdb/cli/cli-cmds.c @@ -787,7 +787,7 @@ edit_command (char *arg, int from_tty) /* Now should only be one argument -- decode it in SAL. */ arg1 = arg; - sals = decode_line_1 (&arg1, 0, 0, 0, 0, 0); + sals = decode_line_1 (&arg1, 0, 0, 0, 0); if (! sals.nelts) { @@ -917,7 +917,7 @@ list_command (char *arg, int from_tty) dummy_beg = 1; else { - sals = decode_line_1 (&arg1, 0, 0, 0, 0, 0); + sals = decode_line_1 (&arg1, 0, 0, 0, 0); if (!sals.nelts) return; /* C++ */ @@ -950,9 +950,9 @@ list_command (char *arg, int from_tty) else { if (dummy_beg) - sals_end = decode_line_1 (&arg1, 0, 0, 0, 0, 0); + sals_end = decode_line_1 (&arg1, 0, 0, 0, 0); else - sals_end = decode_line_1 (&arg1, 0, sal.symtab, sal.line, 0, 0); + sals_end = decode_line_1 (&arg1, 0, sal.symtab, sal.line, 0); if (sals_end.nelts == 0) return; if (sals_end.nelts > 1) |