* symfile.c (add_symbol_file_command): Use parse_and_eval_address.

Suggested by Nick Hibma <n_hibma@webweaving.org>.
This commit is contained in:
Daniel Jacobowitz 2003-06-22 18:32:49 +00:00
parent 2f816dda05
commit ae822768f9
2 changed files with 6 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2003-06-22 Daniel Jacobowitz <drow@mvista.com>
* symfile.c (add_symbol_file_command): Use parse_and_eval_address.
Suggested by Nick Hibma <n_hibma@webweaving.org>.
2003-06-22 Andrew Cagney <cagney@redhat.com>
* osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Handle

View File

@ -1807,11 +1807,7 @@ add_symbol_file_command (char *args, int from_tty)
char *val = sect_opts[i].value;
char *sec = sect_opts[i].name;
val = sect_opts[i].value;
if (val[0] == '0' && val[1] == 'x')
addr = strtoul (val+2, NULL, 16);
else
addr = strtoul (val, NULL, 10);
addr = parse_and_eval_address (val);
/* Here we store the section offsets in the order they were
entered on the command line. */