From db0fec5c4881dc2e65eeba47cd574379c03a4cf4 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Fri, 8 Nov 2013 10:43:23 -0800 Subject: Change "set debug symtab-create" to take a verbosity level. * NEWS: Mention that "set debug symtab-create" now accepts a verbosity level. * buildsym.c (end_symtab_from_static_block): Call set_symtab_primary to set the symtab's primary flag. * jit.c (finalize_symtab): Ditto. * mdebugread.c (psymtab_to_symtab_1): Ditto. * symfile.c (allocate_symtab): Only print debugging messages for symtab_create_debug levels 2 and higher. * symtab.c (symtab_create_debug): Change type to unsigned int. (set_symtab_primary): New function. (_initialize_symtab): Change "set debug symtab-create" to a zuinteger option. * symtab.h (set_symtab_primary): Declare. (symtab_create_debug): Update decl. doc/ * gdb.texinfo (Debugging Output): Update text for "set debug symtab-create". --- gdb/jit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/jit.c') diff --git a/gdb/jit.c b/gdb/jit.c index ba0be5e440e..3daa9faa0fc 100644 --- a/gdb/jit.c +++ b/gdb/jit.c @@ -665,7 +665,7 @@ finalize_symtab (struct gdb_symtab *stab, struct objfile *objfile) /* (begin, end) will contain the PC range this entire blockvector spans. */ - symtab->primary = 1; + set_symtab_primary (symtab, 1); BLOCKVECTOR_MAP (symtab->blockvector) = NULL; begin = stab->blocks->begin; end = stab->blocks->end; -- cgit v1.2.3-65-gdbad