gdb/
[platform/upstream/binutils.git] / gdb / ChangeLog
1 2013-01-25  Yao Qi  <yao@codesourcery.com>
2
3         * event-loop.c (async_queue_event): Remove one parameter
4         'position'.  Remove code handling 'position' == TAIL.
5         (gdb_wait_for_event): Caller update.
6         (check_async_event_handlers): Caller update.
7         (poll_timers): Caller update.
8         * event-loop.h (enum queue_position): Remove.
9
10 2013-01-25  Maxim Kuvyrkov  <maxim@kugelworks.com>
11
12         * MAINTAINERS: Update my email.
13
14 2013-01-25  Yao Qi  <yao@codesourcery.com>
15
16         * main.c (print_gdb_help): Remove "--epoch" from the help
17         message.
18
19 2013-01-24  Ulrich Weigand  <uweigand@de.ibm.com>
20
21         * symtab.c (skip_prologue_using_sal): Consider a file
22         change the same as an increased line number
23
24 2013-01-24  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
25
26         * MAINTAINERS (Write After Approval): Add myself to the list. 
27
28 2013-01-24  Tom Tromey  <tromey@redhat.com>
29
30         * ada-lang.h (ada_decode_symbol): Make return type const.
31         * ada-lang.c (ada_decode_symbol): Likewise.
32
33 2013-01-23  Doug Evans  <dje@google.com>
34
35         * linespec.c (find_linespec_symbols): Make static.
36
37 2013-01-23  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
38
39         * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
40         type on float conversion for complex type.
41
42 2013-01-23  Siva Chandra Reddy  <sivachandra@google.com>
43
44         Add a new class gdb.Architecture which exposes GDB's
45         internal representation of architecture via GDB Python API.
46         * Makefile.in: Add entries corresponding to the new file
47         python/py-arch.c.
48         * NEWS (Python Scripting): Add entries for the new class
49         gdb.Architecture and the new method gdb.Frame.architecture.
50         * python/py-arch.c: Implement gdb.Architecture class.
51         * python/py-frame.c (frapy_arch): Implement the method
52         gdb.Frame.architecture().
53         (frame_object_methods): Add 'architecture' to the method table.
54         * python/python-internal.h: Add declarations of new utility
55         functions.
56         * python/python.c (_initialize_python): Initialize
57         gdb.Architecture class.
58
59 2013-01-23  Doug Evans  <dje@google.com>
60
61         Work around binutils/15021.
62         * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
63         type_unit_group out of union s.  All uses updated.
64         (read_index_from_section): Watch for index version 8.
65         (follow_die_sig): If using .gdb_index version <= 7, record the TU as
66         an imported symtab.
67         (write_psymtabs_to_index): Increment version number to 8.
68
69 2013-01-22  Pedro Alves  <palves@redhat.com>
70
71         * annotate.c (breakpoint_changed): Skip if breakpoint is not
72         user-visible.
73
74 2013-01-22  Pedro Alves  <palves@redhat.com>
75
76         * annotate.c (annotate_breakpoints_changed): Rename to ...
77         (annotate_breakpoints_invalid): ... this.  Make static.
78         (breakpoint_changed): Adjust.
79         (_initialize_annotate): Always install the observers.  Install a
80         "breakpoint_created" observer.
81         * annotate.h (annotate_breakpoints_changed): Delete declaration.
82         * breakpoint.c (set_breakpoint_condition)
83         (breakpoint_set_commands, do_map_commands_command)
84         (init_raw_breakpoint, clear_command, set_ignore_count)
85         (enable_breakpoint_disp): No longer call
86         annotate_breakpoints_changed.
87
88 2013-01-22  Pedro Alves  <palves@redhat.com>
89
90         * annotate.c: Include "inferior.h".
91         (frames_invalid_emitted)
92         (breakpoints_invalid_emitted): New globals.
93         (async_background_execution_p): New function.
94         (annotate_breakpoints_changed, annotate_frames_invalid): Skip
95         emitting the annotation if it has already been emitted.
96         (annotate_display_prompt): New function.
97         * annotate.h (annotate_display_prompt): New declaration.
98         * event-top.c: Include annotate.h.
99         (display_gdb_prompt): Call annotate_display_prompt.
100
101 2013-01-22  Pedro Alves  <palves@redhat.com>
102
103         * annotate.c (ignore_count_changed): Delete.
104         (annotate_breakpoints_changed): Don't clear ignore_count_changed.
105         (annotate_ignore_count_change): Delete.
106         (annotate_stopped): Don't emit a delayed breakpoints-changed
107         annotation.
108         * annotate.h (annotate_ignore_count_change): Delete.
109         * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
110         annotate_ignore_count_change.
111
112 2013-01-22  Tom Tromey  <tromey@redhat.com>
113
114         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
115         require_rvalue for a register location.
116
117 2013-01-21  Marc Khouzam  <marc.khouzam@ericsson.com>
118
119         * breakpoint.c (print_one_breakpoint_location): Add MI
120         field 'thread-groups' when printing a breakpoint.
121         (output_thread_groups): New function.
122
123 2013-01-21  Siva Chandra Reddy  <sivachandra@google.com>
124
125         * python/lib/gdb/commands/explore.py
126         (CompoundExplorer.explore_expr): Correct the name of a method
127         being invoked.
128         (ExploreTypeCommand.invoke): Add a missing 'return'.
129
130 2013-01-21  Tom Tromey  <tromey@redhat.com>
131
132         * gdb_obstack.h (obconcat): Move declaration here, from...
133         * symfile.h (obconcat): ... here.
134         * gdb_obstack.c: New file.
135         (obconcat): Move from...
136         * symfile.c (obconcat): ... here.
137         * Makefile.in (SFILES): Add gdb_obstack.c.
138         (COMMON_OBS): Add gdb_obstack.o.
139
140 2013-01-21  Tom Tromey  <tromey@redhat.com>
141
142         * symfile.h (obsavestring): Don't declare.
143         * symfile.c (obsavestring): Remove.
144         * ada-exp.y: Use obstack_copy0, not obsavestring.
145         * ada-lang.c: Use obstack_copy0, not obsavestring.
146         * coffread.c: Use obstack_copy0, not obsavestring.
147         * cp-namespace.c: Use obstack_copy0, not obsavestring.
148         * dbxread.c: Use obstack_copy0, not obsavestring.
149         * dwarf2read.c: Use obstack_copy0, not obsavestring.
150         * jit.c: Use obstack_copy0, not obsavestring.
151         * mdebugread.c: Use obstack_copy0, not obsavestring.
152         * psymtab.c: Use obstack_copy0, not obsavestring.
153         * stabsread.c: Use obstack_copy0, not obsavestring.
154         * xcoffread.c: Use obstack_copy0, not obsavestring.
155
156 2013-01-21  Tom Tromey  <tromey@redhat.com>
157
158         * dwarf2read.c (fixup_go_packaging): Save package name
159         on objfile obstack.
160         * gdbtypes.c (init_type): Don't copy name.
161
162 2013-01-21  Tom Tromey  <tromey@redhat.com>
163
164         * dwarf2read.c (struct partial_die_info) <name, scope>: Now
165         const.
166         (struct attribute) <u.str>: Now const.
167         (struct fnfieldlist) <name>: Now const.
168         (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
169         (partial_die_parent_scope): Make return type const.
170         (partial_die_full_name, add_partial_symbol): Update.
171         (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
172         'name' const.
173         (find_file_and_directory): Make 'name' and 'comp_dir' const.
174         (read_file_scope, read_func_scope, dwarf2_add_field)
175         (dwarf2_add_member_fn, read_structure_type)
176         (process_enumeration_scope, read_array_type, read_module_type)
177         (read_base_type, read_subrange_type): Update.
178         (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
179         (new_symbol_full, guess_full_die_structure_name): Update.
180         (dwarf2_canonicalize_name): Return const type.  Make 'name' const.
181         (dwarf2_name): Return const type.
182         (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
183         const.
184
185 2013-01-21  Tom Tromey  <tromey@redhat.com>
186
187         * gdbtypes.c (init_type): Make 'name' const.
188         * gdbtypes.h (init_type): Update.
189
190 2013-01-21  Tom Tromey  <tromey@redhat.com>
191
192         * buildsym.c (patch_subfile_names): Use set_last_source_file.
193         (start_symtab): Make 'name' and 'dirname' const.  Use
194         set_last_source_file.
195         (restart_symtab, reset_symtab_globals): Use set_last_source_file.
196         (last_source_file): Define.  Now static.
197         (set_last_source_file, get_last_source_file): New functions.
198         * buildsym.h (last_source_file): Don't declare.
199         (start_symtab): Update.
200         (set_last_source_file, get_last_source_file): Declare.
201         * coffread.c (complete_symtab): Use set_last_source_file.
202         (coff_end_symtab): Likewise.
203         (coff_symtab_read): Use set_last_source_file, get_last_source_file.
204         * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
205         set_last_source_file.
206         (process_one_symbol): Use get_last_source_file.
207         * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
208         (psymtab_to_symtab_1): Use get_last_source_file.
209         * xcoffread.c (process_linenos): Use get_last_source_file.
210         (complete_symtab): Use set_last_source_file.
211         (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
212         (scan_xcoff_symtab): Use set_last_source_file.
213
214 2013-01-21  Tom Tromey  <tromey@redhat.com>
215
216         * symtab.c (struct demangled_name_entry) <mangled>: Now const.
217         (symbol_set_names): Remove casts.  Handle field const-ness.
218
219 2013-01-21  Tom Tromey  <tromey@redhat.com>
220
221         * dwarf2read.c (new_symbol_full): Remove cast.
222         * symtab.c (symbol_set_demangled_name): Make 'name' const.
223         * symtab.h (symbol_set_demangled_name): Update.
224
225 2013-01-21  Tom Tromey  <tromey@redhat.com>
226
227         * main.c (captured_main): Call bfd_init.
228
229 2013-01-21  Tom Tromey  <tromey@redhat.com>
230
231         * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
232         * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
233         * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
234         * NEWS: Update.
235
236 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
237
238         * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
239
240 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
241
242         Fix gdb.fortran/common-block.exp crash in PIE mode.
243         * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
244         LOC_COMMON_BLOCK.
245         * f-valprint.c (info_common_command_for_block): Expect
246         LOC_COMMON_BLOCK in gdb_assert.
247         * symtab.h (struct general_symbol_info): Update comment for the
248         common_block member.
249         (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
250         (enum address_class): New member LOC_COMMON_BLOCK.
251
252 2013-01-18  David Blaikie  <dblaikie@gmail.com>
253
254         * MAINTAINERS (Write After Approval): Add "David Blaikie".
255
256 2013-01-18  Tom Tromey  <tromey@redhat.com>
257
258         PR c++/14999:
259         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
260         Call require_rvalue.
261
262 2013-01-18  Yao Qi  <yao@codesourcery.com>
263
264         * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
265         (dbx_read_symtab): New declaration.
266         (dbx_psymtab_to_symtab): Delete.
267         (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
268         Rename parameter PST to SELF.  Exchanged two parameters.
269         (start_psymtab): Caller update.
270         * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
271         (dwarf2_read_symtab): New declaration.
272         (dwarf2_psymtab_to_symtab): Delete.
273         (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
274         Rename parameter PST to SELF.  Exchanged two parameters.
275         (create_partial_symtab): Caller update.
276         * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
277         (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
278         Rename parameter PST to SELF.  Exchanged two parameters.
279         (parse_partial_symbols, new_psymtab): Caller update.
280         * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
281         two parameters.
282         * psymtab.c (psymtab_to_symtab): Caller update.
283         * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
284         (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
285         Rename parameter PST to SELF.  Exchanged two parameters.
286         (xcoff_start_psymtab): Caller update.
287
288 2013-01-18  Yao Qi  <yao@codesourcery.com>
289
290         * infrun.c (proceed): Rename local variable 'oneproc' to
291         'force_step'.
292
293 2013-01-17  Doug Evans  <dje@google.com>
294
295         * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
296         (dw2_build_type_unit_groups): Delete.  All uses updated.
297
298         * symtab.h (struct symbol_search): Add comment.
299
300 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
301
302         * symtab.c (compare_filenames_for_search): New comment for
303         HAS_DRIVE_SPEC.
304
305 2013-01-17  Tom Tromey  <tromey@redhat.com>
306
307         * cp-abi.c (cp_abi_completer): Fix typo in assignment.
308
309 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
310
311         * symtab.c (iterate_over_some_symtabs): New variable cleanups,
312         initialize it by existing make_cleanup.  Call new do_cleanups.
313
314 2013-01-17  Tom Tromey  <tromey@redhat.com>
315
316         * cp-abi.c (cp_abi_completer): New function.
317         (_initialize_cp_abi): Set completer for "set cp-abi".
318
319 2013-01-17  Tom Tromey  <tromey@redhat.com>
320
321         * mem-break.c: Remove obsolete comment.
322         * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
323
324 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
325
326         * jit.c (jit_reader_load_command): Interpret the jit reader name
327         as an absolute path if it begins with a forward slash.
328
329 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
330
331         PR gdb/14550
332
333         * jit.c (finalize_symtab): Ensure that only the global block has a
334         NULL superblock.
335
336 2013-01-17  Pedro Alves  <palves@redhat.com>
337
338         * acinclude.m4: Include ../config/plugins.m4,
339         ../config/largefile.m4 and ../config/lead-dot.m4.  Add comments.
340         * Makefile.in (aclocal_m4_deps): Update.
341         * aclocal.m4: Renegerate.
342
343 2013-01-16  Doug Evans  <dje@google.com>
344
345         * contrib/cc-with-tweaks.sh: Add references to Fission docs.
346
347 2013-01-16  Pedro Alves  <palves@redhat.com>
348             Tom Tromey  <tromey@redhat.com>
349
350         PR cli/7221:
351         * NEWS: Add "catch signal".
352         * breakpoint.c (base_breakpoint_ops): No longer static.
353         (bpstat_explains_signal): New function.
354         (init_catchpoint): No longer static.
355         (base_breakpoint_explains_signal): New function.
356         (base_breakpoint_ops): Initialize new field.
357         * breakpoint.h (enum bpstat_signal_value): New.
358         (struct breakpoint_ops) <explains_signal>: New field.
359         (bpstat_explains_signal): Remove macro, declare as function.
360         (base_breakpoint_ops, init_catchpoint): Declare.
361         * break-catch-sig.c: New file.
362         * inferior.h (signal_catch_update): Declare.
363         * infrun.c (signal_catch): New global.
364         (handle_syscall_event): Update for change to
365         bpstat_explains_signal.
366         (handle_inferior_event): Likewise.  Always handle random signals
367         via bpstats.
368         (signal_cache_update): Check signal_catch.
369         (signal_catch_update): New function.
370         (_initialize_infrun): Initialize signal_catch.
371         * Makefile.in (SFILES): Add break-catch-sig.c.
372         (COMMON_OBS): Add break-catch-sig.o.
373
374 2013-01-16  Tom Tromey  <tromey@redhat.com>
375
376         * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
377         (print_one_catch_solib, print_one_catch_syscall)
378         (print_one_catch_exec, print_one_exception_catchpoint): Emit
379         "catch-type".
380
381 2013-01-16  Yao Qi  <yao@codesourcery.com>
382
383         * printcmd.c (current_display_number): Make it static.
384
385 2013-01-16  Yao Qi  <yao@codesourcery.com>
386
387         * infcmd.c (step_once): Don't check '!single_inst' as it was
388         checked before.
389
390 2013-01-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
391
392         * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
393
394 2013-01-14  Tom Tromey  <tromey@redhat.com>
395
396         * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
397         set command.
398         * command.h (add_setshow_string_noescape_cmd): Update.
399         * corefile.c (set_gnutarget_command): Remove trailing whitespace.
400         (complete_set_gnutarget): New function.
401         (_initialize_core): Set the "set gnutarget" completer.
402
403 2013-01-14  Tom Tromey  <tromey@redhat.com>
404
405         PR symtab/14442:
406         * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
407         (c_type_print_modifier): Likewise.
408         * dwarf2read.c (read_tag_restrict_type): New function.
409         (read_type_die_1): Handle DW_TAG_restrict_type.
410         * gdbtypes.c (make_restrict_type): New function.
411         (recursive_dump_type): Handle TYPE_RESTRICT.
412         * gdbtypes.h (enum type_flag_values): Renumber.
413         (enum type_instance_flag_value): Add
414         TYPE_INSTANCE_FLAG_RESTRICT.
415         (TYPE_RESTRICT): New macro.
416         (make_restrict_type): Declare.
417
418 2013-01-14  Tom Tromey  <tromey@redhat.com>
419
420         PR symtab/14931:
421         * psymtab.c (struct psymtab_state): New.
422         (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
423         functions.
424         * psympriv.h (make_cleanup_discard_psymtabs): Declare.
425         * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
426
427 2013-01-14  Richard Sharman  <richard_sharman@mitel.com>
428             Pedro Alves  <palves@redhat.com>
429
430         PR remote/14786
431
432         * remote.c (remote_threads_info): Make a copy of the reply from
433         qfThreadInfo and use that instead of rs->buf.
434
435 2013-01-14  Yao Qi  <yao@codesourcery.com>
436
437         * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
438         (dbx_psymtab_to_symtab): Likewise.
439         * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
440         * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
441         * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
442
443 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
444
445         * parse.c (parse_exp_in_context): New variable inner_chain.  Call
446         make_cleanup_restore_current_language.  Call set_language.  Move
447         OLD_CHAIN and INNER_CHAIN cleanups.
448         * utils.c (do_restore_current_language)
449         (make_cleanup_restore_current_language): New functions.
450         * utils.h (make_cleanup_restore_current_language): New declaration.
451
452 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
453
454         * source.c (symtab_to_fullname): Apply rewrite_source_path also for
455         non-existing files.
456
457         * source.c (symtab_to_fullname): Do not prepend DIRNAME for
458         non-existing files if FILENAME is already absolute.
459
460 2013-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
461
462         * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
463         fputs_filtered.  Append trailing newline.
464
465 2013-01-11  Yao Qi  <yao@codesourcery.com>
466             Stan Shebs  <stan@codesourcery.com>
467
468         * psymtab.c (init_psymbol_list): Clarify the comment.
469
470 2013-01-11  Yao Qi  <yao@codesourcery.com>
471
472         * breakpoint.c (print_one_breakpoint_location): Remove dead code.
473         (update_dprintf_command_list): Assert that 'printf_line' is
474         non-null.  Remove condition check.
475
476 2013-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
477
478         Code cleanup.
479         * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
480         type const char *.
481         * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
482         const char *.
483         * tui/tui-source.h (tui_source_is_displayed): Likewise.
484
485 2013-01-09  Anthony Green  <green@moxielogic.com>
486
487         * cp-abi.c (cplus_print_vtable): Don't return value from void
488         function.
489         * ada-lang.c (re_set_catch_assert): Ditto.
490
491 2013-01-09  Doug Evans  <dje@google.com>
492
493         * symfile.h (quick_symbol_functions): Delete member
494         pre_expand_symtabs_matching.  All uses removed.
495         * dwarf2read.c (dw2_lookup_symbol): Implement.
496         (dw2_do_expand_symtabs_matching): Delete.
497         (dw2_pre_expand_symtabs_matching): Delete.
498         (struct dw2_symtab_iterator): New type.
499         (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
500         (dw2_expand_symtabs_for_function): Rewrite.
501         (dwarf2_gdb_index_functions): Update.
502         * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
503         (psym_functions): Update.
504
505 2013-01-09  Tom Tromey  <tromey@redhat.com>
506
507         * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
508         * configure: Rebuild.
509         * configure.ac: Add somread.o to the build if BFD has SOM
510         support.
511         * somread.c: Include som/aout.h, not syms.h.
512         (som_symtab_read): Use som_external_symbol_dictionary_record.
513         Unpack records manually.
514         (_initialize_somread): Declare.
515
516 2012-01-08  Mike Frysinger  <vapier@gentoo.org>
517
518         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
519         Cast return_address to 64bits.
520
521 2013-01-08  Hui Zhu  <hui_zhu@mentor.com>
522
523         * printcmd.c: Remove define of function output_command.
524         * tracepoint.c: Remove extern of function output_command.
525         * valprint.h: (output_command): New extern.
526
527 2013-01-07  Tom Tromey  <tromey@redhat.com>
528
529         * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
530         Remove.
531         (objc_language_defn): Use c_printchar, c_printstr,
532         c_emit_char.
533
534 2013-01-07  Tom Tromey  <tromey@redhat.com>
535
536         PR cli/7719:
537         * NEWS: Update.
538         * ada-valprint.c (printstr, print_field_values): Remove
539         "inspect_it" code.
540         * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
541         code.
542         * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
543         code.
544         * m2-lang.c (m2_printstr): Remove "inspect_it" code.
545         * main.c (captured_main): Remove "epoch" argument.
546         * objc-lang.c (objc_printstr): Remove "inspect_it" code.
547         * p-lang.c (pascal_printstr): Remove "inspect_it" code.
548         * p-valprint.c (pascal_object_print_value_fields): Remove
549         "inspect_it" code.
550         * printcmd.c (print_command_1): Remove 'inspect' argument.
551         (print_command, call_command): Update.
552         (inspect_command): Remove.
553         (_initialize_printcmd): Make "inspect" an alias for "print".
554         * top.c (epoch_interface): Remove.
555         * top.h (epoch_interface): Remove.
556         * valprint.c (user_print_options): Update.
557         (print_converted_chars_to_obstack): Remove "inspect_it" code.
558         * valprint.h (struct value_print_options) <inspect_it>: Remove
559         field.
560
561 2013-01-04  Tom Tromey  <tromey@redhat.com>
562
563         * valprint.h (read_string): Add 'extern'.
564
565 2013-01-07  Joel Brobecker  <brobecker@adacore.com>
566
567         * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
568         used to decide whether to define darwin_read_dyld_info or not.
569
570 2013-01-03  Pierre Muller  <muller@sourceware.org>
571
572         * main.c (relocate_gdb_directory): Avoid calling stat function
573         if DIR is empty.
574
575 2013-01-03  Yao Qi  <yao@codesourcery.com>
576
577         * psymtab.c (fixup_psymbol_section): Update declaration.
578         (fixup_psymbol_section): Remove code returning value.
579
580 2013-01-03  Yao Qi  <yao@codesourcery.com>
581
582         * symtab.h: Remove some out of date comments.
583          (enum exception_event_kind): Move it ...
584         * breakpoint.c: ... here.
585
586 2013-01-02  Iain Sandoe  <developer@sandoe-acoustics.co.uk>
587
588         PR gdb/14405
589         * darwin-nat.c (darwin_read_dyld_info): Only build if
590         TASK_DYLD_INFO_COUNT is defined.
591         (darwin_xfer_partial): Call darwin_read_dyld_info only if
592         TASK_DYLD_INFO_COUNT is defined.
593
594 2013-01-02  Tom Tromey  <tromey@redhat.com>
595
596         * symfile.h (struct ecoff_debug_hack): Remove.
597         * objfiles.c: Don't include mdebugread.h.
598
599 2013-01-02  Tom Tromey  <tromey@redhat.com>
600
601         * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
602         * configure.ac: Check for Mach-O support in BFD.  Update
603         CONFIG_OBS.
604         * configure: Rebuild.
605
606 2013-01-02  Tom Tromey  <tromey@redhat.com>
607
608         * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
609         * configure.ac: Use GDB_AC_CHECK_BFD.
610         * configure: Rebuild.
611
612 2013-01-01  Maxim Kuvyrkov  <maxim.kuvyrkov@gmail.com>
613
614         * MAINTAINERS: Update my email.
615
616 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
617
618         * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
619
620 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
621
622         * rs6000-nat.c (bss_data_overlap): New function.
623         (vmap_symtab): Use it to adjust the .bss section's offset.
624
625 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
626
627         Update year range in copyright notice of all files.
628
629 2013-01-01, 13  Joel Brobecker  <brobecker@adacore.com>
630
631         * top.c (print_gdb_version): Update copyright year.
632
633 For older changes see ChangeLog-2012.
634 \f
635 Local Variables:
636 mode: change-log
637 left-margin: 8
638 fill-column: 74
639 version-control: never
640 coding: utf-8
641 End: