aboutsummaryrefslogtreecommitdiff
path: root/gdb/symfile.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2010-10-01 20:26:11 +0000
committerTom Tromey <tromey@redhat.com>2010-10-01 20:26:11 +0000
commit72b9f47f1ebefa7618abb0c142811af5b5b823e4 (patch)
treea08f5ac64dba94ee992f0b007c2e1581de7ec237 /gdb/symfile.c
parent55e3947383a45ec03e48390775fbf2699e640ec5 (diff)
downloadfsf-binutils-gdb-72b9f47f1ebefa7618abb0c142811af5b5b823e4.zip
fsf-binutils-gdb-72b9f47f1ebefa7618abb0c142811af5b5b823e4.tar.gz
fsf-binutils-gdb-72b9f47f1ebefa7618abb0c142811af5b5b823e4.tar.bz2
* symfile.h (allocate_symtab): Update.
* symfile.c (allocate_symtab): Make 'filename' const. * psymtab.c (add_psymbol_to_bcache): Make 'name' const. (add_psymbol_to_list): Likewise. * psympriv.h (struct partial_symtab) <filename, dirname>: Now const. (add_psymbol_to_list): Update. * mdebugread.c (new_symtab): Make 'name' const. (psymtab_to_symtab_1): Make 'filename' const. * elfread.c (elfstab_offset_sections): Update. * dwarf2read.c (dwarf_decode_lines): Make 'comp_dir' const. (dwarf2_start_subfile): Make 'dirname' and 'comp_dir' const. (psymtab_include_file_name): Update. * dbxread.c (find_stab_function_addr): Make 'filename' const. * buildsym.h (start_subfile): Update. * buildsym.c (start_subfile): Make arguments const.
Diffstat (limited to 'gdb/symfile.c')
-rw-r--r--gdb/symfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symfile.c b/gdb/symfile.c
index dbd1412..91f0765 100644
--- a/gdb/symfile.c
+++ b/gdb/symfile.c
@@ -2724,7 +2724,7 @@ deduce_language_from_filename (const char *filename)
*/
struct symtab *
-allocate_symtab (char *filename, struct objfile *objfile)
+allocate_symtab (const char *filename, struct objfile *objfile)
{
struct symtab *symtab;