]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/ChangeLog
gdb/
[thirdparty/binutils-gdb.git] / gdb / ChangeLog
1 2013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com>
2 Jan Kratochvil <jan.kratochvil@redhat.com>
3
4 Add a new variable that controls a way in which filenames are
5 displayed.
6 * NEWS (set filename-display): New entry.
7 * source.c (filename_display_basename, filename_display_relative)
8 (filename_display_absolute, filename_display_kind_names)
9 (filename_display_string, show_filename_display_string)
10 (symtab_to_filename_for_display): New.
11 (_initialize_source): Added initialization of 'filename-display'
12 variable.
13 * source.h (symtab_to_filename_for_display): Added declaration.
14 * stack.c (print_frame): Added new variable and calling of a new
15 function and condition with this variable. Changed third argument of
16 calling of a function.
17
18 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
19
20 * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
21 Rename field reference filename to fullname.
22 * tui/tui-data.h (struct tui_source_info): Rename field filename to
23 fullname. New comment for it.
24 * tui/tui-source.c (tui_set_source_content): Rename field reference
25 filename to fullname. Initialize field by symtab_to_fullname now.
26 * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
27 reference filename to fullname. Use symtab_to_fullname during
28 comparison.
29
30 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
31
32 Code cleanup.
33 * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
34 (dw2_expand_symtabs_with_fullname): ... here. Rename parameter
35 filename to fullname. Rename variable this_name to this_fullname.
36 Lowercase FILENAME_CMP call.
37 (dw2_find_symbol_file): New comment for the returned string.
38 (dwarf2_gdb_index_functions): Rename the function to
39 dw2_expand_symtabs_with_fullname.
40 * psymtab.c (read_psymtabs_with_filename): Rename to ...
41 (read_psymtabs_with_fullname): ... here. Rename parameter filename to
42 fullname.
43 (psym_functions): Rename the function to read_psymtabs_with_fullname.
44 * symfile.h (struct quick_symbol_functions): Rename field
45 expand_symtabs_with_filename to expand_symtabs_with_fullname and its
46 parameter filename to fullname. Document returned string meaning for
47 find_symbol_file.
48 * symtab.c (find_line_symtab): Rename the called function to
49 expand_symtabs_with_fullname.
50
51 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
52
53 Code cleanup.
54 * breakpoint.c (clear_command): Remove variable is_abs, unify the
55 call of filename_cmp with compare_filenames_for_search.
56 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
57 is_abs, unify the call of FILENAME_CMP with
58 compare_filenames_for_search. New gdb_asserts for real_path and name.
59 Unify the call of compare_filenames_for_search with FILENAME_CMP.
60 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
61 * symfile.h (struct quick_symbol_functions): Extend the comment for
62 map_symtabs_matching_filename.
63 * symtab.c (compare_filenames_for_search): Remove the function comment
64 relative path requirement. Handle absolute filenames, with a comment.
65 (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
66 FILENAME_CMP with compare_filenames_for_search. New gdb_asserts for
67 real_path and name. Unify the call of compare_filenames_for_search
68 with FILENAME_CMP.
69 (iterate_over_symtabs): New gdb_assert on REAL_PATH.
70
71 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
72
73 Code cleanup.
74 * breakpoint.c (print_breakpoint_location): Replace bp_location field
75 source_file references by symtab field references. Remove variables
76 sal and fullname.
77 (momentary_breakpoint_from_master, add_location_to_breakpoint):
78 (clear_command, say_where): Replace bp_location field source_file
79 references by symtab field references.
80 (bp_location_dtor): Remove the source_file reference.
81 (update_static_tracepoint): Replace bp_location field source_file
82 references by symtab field references.
83 (breakpoint_free_objfile): New function.
84 * breakpoint.h (struct bp_location): Extend the comment for line_number.
85 Replace the field source_file by field symtab, extend its comment.
86 (breakpoint_free_objfile): New declaration.
87 * objfiles.c (free_objfile): Call breakpoint_free_objfile.
88 * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
89 field source_file references by symtab field references.
90
91 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
92
93 Replace xfullpath calls by gdb_realpath calls.
94 * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
95 function comment.
96 * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
97 Remove it from the iterate_over_some_symtabs call.
98 (dw2_map_symtabs_matching_filename): Remove parameter full_path.
99 Remove it from the dw2_map_expand_apply calls, remove a block handling
100 it.
101 * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
102 Remove it from the iterate_over_some_symtabs call.
103 (partial_map_symtabs_matching_filename): Remove parameter full_path.
104 Remove it from the partial_map_expand_apply calls, remove a block
105 handling it. Drop gdb_realpath call and cleanups from the real_path
106 handling.
107 * source.c (openp): Drop the comment part about xfullpath. Replace
108 xfullpath calls by gdb_realpath calls.
109 (find_and_open_source): Replace xfullpath call by gdb_realpath call.
110 * symfile.h (struct quick_symbol_functions): Remove parameter full_path
111 from method map_symtabs_matching_filename and its comment.
112 * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
113 gdb_realpath call.
114 * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
115 remove it also from the function comment, remove a block handling it.
116 Drop gdb_realpath call and cleanups from the real_path handling.
117 (iterate_over_symtabs): Drop variable full_path and its use.
118 * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
119 * utils.c (xfullpath): Remove.
120 * utils.h (xfullpath): Remove.
121
122 2013-02-01 Andreas Tobler <andreast@fgznet.ch>
123
124 * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
125 (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
126 (ALLDEPFILES): Add ppc64-tdep.c.
127 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
128 ppc64-tdep.o to gdb_target_obs.
129 * ppc64-tdep.h: New file.
130 * ppc64-tdep.c: New file.
131 (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
132 ppc-linux-tdep.c to here.
133 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
134 (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
135 (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
136 (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
137 from ppc-linux-tdep.c to here.
138 (ppc64_convert_from_func_ptr_addr): Rename from
139 ppc64_linux_convert_from_func_ptr_addr to
140 ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
141 here.
142 * rs6000-tdep.c:
143 (read_insn): Move from ppc-linux-tdep.c to here.
144 (insns_match_pattern, insn_d_field, insn_ds_field): Move
145 from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
146 * ppc-linux-tdep.c: Include ppc64-tdep.h.
147 Removed above functions.
148 (ppc_linux_init_abi): Adjust.
149
150 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
151
152 * ada-valprint.c (ada_print_floating): Remove unused 'len'.
153
154 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
155
156 * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
157
158 2013-02-01 Pedro Alves <palves@redhat.com>
159
160 * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
161 * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
162
163 2013-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
164
165 * elfread.c (elf_symfile_read): Limit separate debug info additions to
166 files with no separate debug info.
167 * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
168 * symfile.c (read_symbols): Call find_separate_debug_file_in_section
169 only for files with no separate debug info.
170
171 2013-01-31 Tom Tromey <tromey@redhat.com>
172
173 * jit.c (jit_program_space_data): Rename from jit_inferior_data;
174 change type.
175 (struct jit_program_space_data): Rename from jit_inferior_data.
176 Update comments.
177 (get_jit_program_space_data): Rename from get_jit_inferior_data.
178 Change return type. Attach data to program space.
179 (jit_program_space_data_cleanup): Rename from
180 jit_inferior_data_cleanup; change argument type.
181 (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
182 change type.
183 (jit_register_code): Update.
184 (jit_update_inferior_cache): Remove.
185 (jit_breakpoint_deleted): Get jit data from the location's program
186 space.
187 (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
188 'ps_data', change type.
189 (jit_inferior_init, jit_breakpoint_re_set_internal)
190 (jit_event_handler): Update.
191 (free_objfile_data): Get data from objfile's program space.
192 (_initialize_jit): Update.
193
194 2013-01-31 Tom Tromey <tromey@redhat.com>
195
196 PR gdb/13987:
197 * jit.c (struct jit_inferior_data) <cached_code_address,
198 jit_breakpoint>: New fields.
199 (jit_breakpoint_re_set_internal): Fix logging. Only create
200 breakpoint if cached address has changed.
201 (jit_update_inferior_cache, jit_breakpoint_deleted): New
202 functions.
203 (_initialize_jit): Register breakpoint deleted observer.
204
205 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
206
207 * infrun.c (handle_syscall_event): Remove unused gdbarch.
208 (save_infcall_suspend_state): Ifdef out unused inf.
209 (restore_infcall_suspend_state): Ifdef out unused inf.
210 * jit.c (jit_register_code): Remove unused i, b, inf_data.
211 (jit_frame_sniffer): Remove unused inf_data.
212
213 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
214
215 * c-exp.y (classify_inner_name): Remove unused type.
216 * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
217 in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
218 need_escape.
219 (c_get_string): Remove unused kind.
220 * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
221
222 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
223
224 * charset.c (intermediate_encoding): Remove unused i.
225 * completer.c (signal_completer): Remove unused i.
226 * continuations.c (discard_my_continuations_1): Remove unused
227 continuation_ptr.
228 * corelow.c (core_close): Remove unuseD name.
229 (get_core_siginfo): Remove unused pid.
230 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
231 i, cps.
232 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
233 (loclist_describe_location): Remove unused first.
234 * event-top.c (command_line_handler): Remove unused got_eof.
235 * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
236 (resize_section_table): Remove unused old_value.
237 * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
238 * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
239 * i386-tdep.c (i386_process_record): Remove unused rex.
240 * infcmd.c (get_return_value): Remove unused uiout.
241 * jv-lang.c (type_from_class): Remove unused is_array.
242 * jv-valprint.c (java_val_print): Remove unused i.
243 * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
244 * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
245 * m2-typeprint.c (m2_print_type): Remove unused code.
246 * macroexp.c (get_character_constant): Remove unused body_start.
247 (macro_stringify): Remove unused result.
248 * objc-lang.c (find_methods): Remove unused gdbarch.
249 * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
250 * regcache.c (regcache_cooked_read): Remove unused gdbarch.
251 * stack.c (print_frame_args): Remove unused summary.
252 * thread.c (thread_apply_command): Remove unused p.
253 * valarith.c (value_x_unop): Remove unused mangle_ptr.
254 * valops.c (search_struct_method): Remove unused skip.
255 * valprint.c (generic_val_print): Remove unused byte_order.
256 * varobj.c (varobj_update): Remove unused changed.
257 * cli/cli-cmds.c (complete_command): Remove unused next_item.
258 (alias_command): Remove unused c.
259 * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
260 * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
261 format.
262 (mi_cmd_data_write_memory): Remove unused word_format.
263 (mi_cmd_data_write_memory_bytes): Remove unused r.
264 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
265 p_start, p_end.
266 * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
267 * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
268 line_width.
269
270 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
271
272 * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
273 * symtab.c (iterate_over_symtabs): Remove unused s.
274 (find_pc_sect_symtab): Remove unused pspAce.
275 (find_pc_sect_line): Remove unused alt_symtab.
276 (find_pcs_for_symtab_line): Remove unused ix, previous_function.
277 (completion_list_add_name): Remove unused newsize.
278
279 2013-01-31 Tom Tromey <tromey@redhat.com>
280
281 PR c++/14998:
282 * dwarf2read.c (read_tag_ptr_to_member_type): Handle
283 TYPE_CODE_FUNC.
284
285 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
286
287 * target.c (target_read_string): Remove unused origlen.
288
289 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
290
291 * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
292 * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
293 * ax-general.c (ax_print): Remove unused is_float.
294 * blockframe.c (block_innermost_frame): Remove unused start, end.
295 * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
296
297 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
298
299 * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
300 (svr4_read_so_list): Remove unused lmo.
301 * solib-target.c (solib_target_relocate_section_addresses): Remove
302 unused flags.
303
304 2013-01-30 Tom Tromey <tromey@redhat.com>
305
306 * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
307
308 2013-01-30 Tom Tromey <tromey@redhat.com>
309
310 * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
311 * utils.c (gnu_debuglink_crc32): Remove.
312 * utils.h (gnu_debuglink_crc32): Don't declare.
313
314 2013-01-30 Tom Tromey <tromey@redhat.com>
315
316 * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
317 (read_structure_type, read_enumeration_type): Remove cast.
318
319 2013-01-30 Tom Tromey <tromey@redhat.com>
320
321 * dwarf2read.c (read_namespace_type): Remove cast.
322 (read_typedef): Likewise.
323
324 2013-01-29 Tom Tromey <tromey@redhat.com>
325
326 * dwarf2read.c (free_dwo_file): Remove assert.
327
328 2013-01-29 Tom Tromey <tromey@redhat.com>
329
330 * value.c (deprecated_set_value_modifiable): Remove.
331 * value.h (deprecated_set_value_modifiable): Remove.
332
333 2013-01-28 Doug Evans <dje@google.com>
334
335 * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
336 to addresses from dwo files.
337
338 2013-01-25 Siva Chandra Reddy <sivachandra@google.com>
339
340 * valops.c (find_overload_match): Remove unused argument 'lax'.
341 * value.h: Remove unused argument 'lax' from the declaration of
342 find_overload_match.
343 * eval.c (value_subexp_standard): Do not pass a 'lax' argument
344 to find_overload_match.
345 * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
346 argument to find_overload_match.
347
348 2013-01-25 Tom Tromey <tromey@redhat.com>
349
350 * dwarf2read.c (processing_has_namespace_info): Remove.
351 (struct dwarf2_cu) <processing_has_namespace_info>: New field.
352 (process_die, read_func_scope, dwarf2_start_symtab)
353 (new_symbol_full): Update.
354
355 2013-01-25 Tom Tromey <tromey@redhat.com>
356
357 * cp-namespace.c (cp_set_block_scope): Remove.
358 * cp-support.h (cp_set_block_scope): Remove.
359 * dbxread.c: Include block.h.
360 (cp_set_block_scope): New function.
361 (process_one_symbol): Update.
362 * dwarf2read.c (read_func_scope): Use block_set_scope.
363
364 2013-01-25 Pedro Alves <palves@redhat.com>
365
366 * remote.c (add_current_inferior_and_thread): Tweak comment.
367
368 2013-01-25 Tom Tromey <tromey@redhat.com>
369
370 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
371 (cp_add_using_directive): Add 'copy_names' argument.
372 * cp-support.h (cp_add_using_directive): Update.
373 (struct using_direct) <import_src, import_dest, alias,
374 declaration>: Now const.
375 * dwarf2read.c (read_import_statement): Use obconcat.
376 Don't copy names passed to cp_add_using_directive.
377
378 2013-01-25 Tom Tromey <tromey@redhat.com>
379
380 * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
381
382 2013-01-25 Pedro Alves <palves@redhat.com>
383
384 * remote.c (stop_reply_extract_thread): New.
385 (add_current_inferior_and_thread): New parameter 'wait_status'.
386 Handle it.
387 (remote_start_remote): Pass wait status to
388 add_current_inferior_and_thread.
389 (extended_remote_run): Update comment.
390 (extended_remote_create_inferior_1): Pass wait status to
391 add_current_inferior_and_thread.
392
393 2013-01-25 Andrew Burgess <aburgess@broadcom.com>
394 Ulrich Weigand <uweigand@de.ibm.com>
395
396 * valarith.c (value_vector_widen): New function for replicating a
397 scalar into a vector.
398 (value_binop): Use value_vector_widen to widen scalar to vector
399 rather than casting, this better matches gcc C behaviour.
400 * valops.c (value_casst): Update logic for casting between vector
401 types, and for casting from scalar to vector, try to match gcc C
402 behaviour.
403 * value.h (value_vector_widen): Declare.
404 * opencl-lang.c (opencl_value_cast): New opencl specific casting
405 function, handle special case for casting scalar to vector.
406 (opencl_relop): Use opencl_value_cast.
407 (evaluate_subexp_opencl): Use opencl_value_cast instead of
408 value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
409 in order to use opencl_value_cast.
410
411 2013-01-25 Yao Qi <yao@codesourcery.com>
412
413 * event-loop.c: Include "queue.h".
414 (gdb_event_p): New typedef.
415 (DECLARE_QUEUE_P): Use.
416 (DEFINE_QUEUE_P): Use.
417 (async_queue_event): Remove.
418 (gdb_event_xfree): New.
419 (initialize_event_loop): New.
420 (process_event): Use QUEUE macros.
421 (event_queue): Remove.
422 (gdb_wait_for_event): Caller update.
423 (check_async_event_handlers): Likewise.
424 (poll_timers): Likewise.
425 * event-loop.h (initialize_event_loop): Declare.
426 * event-loop.c (gdb_event_xfree): New.
427 * top.c (gdb_init): Call initialize_event_loop.
428
429 2013-01-25 Yao Qi <yao@codesourcery.com>
430
431 * event-loop.c (async_queue_event): Remove one parameter
432 'position'. Remove code handling 'position' == TAIL.
433 (gdb_wait_for_event): Caller update.
434 (check_async_event_handlers): Caller update.
435 (poll_timers): Caller update.
436 * event-loop.h (enum queue_position): Remove.
437
438 2013-01-25 Maxim Kuvyrkov <maxim@kugelworks.com>
439
440 * MAINTAINERS: Update my email.
441
442 2013-01-25 Yao Qi <yao@codesourcery.com>
443
444 * main.c (print_gdb_help): Remove "--epoch" from the help
445 message.
446
447 2013-01-24 Ulrich Weigand  <uweigand@de.ibm.com>
448
449 * symtab.c (skip_prologue_using_sal): Consider a file
450 change the same as an increased line number
451
452 2013-01-24 Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
453
454 * MAINTAINERS (Write After Approval): Add myself to the list.
455
456 2013-01-24 Tom Tromey <tromey@redhat.com>
457
458 * ada-lang.h (ada_decode_symbol): Make return type const.
459 * ada-lang.c (ada_decode_symbol): Likewise.
460
461 2013-01-23 Doug Evans <dje@google.com>
462
463 * linespec.c (find_linespec_symbols): Make static.
464
465 2013-01-23 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
466
467 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
468 type on float conversion for complex type.
469
470 2013-01-23 Siva Chandra Reddy <sivachandra@google.com>
471
472 Add a new class gdb.Architecture which exposes GDB's
473 internal representation of architecture via GDB Python API.
474 * Makefile.in: Add entries corresponding to the new file
475 python/py-arch.c.
476 * NEWS (Python Scripting): Add entries for the new class
477 gdb.Architecture and the new method gdb.Frame.architecture.
478 * python/py-arch.c: Implement gdb.Architecture class.
479 * python/py-frame.c (frapy_arch): Implement the method
480 gdb.Frame.architecture().
481 (frame_object_methods): Add 'architecture' to the method table.
482 * python/python-internal.h: Add declarations of new utility
483 functions.
484 * python/python.c (_initialize_python): Initialize
485 gdb.Architecture class.
486
487 2013-01-23 Doug Evans <dje@google.com>
488
489 Work around binutils/15021.
490 * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
491 type_unit_group out of union s. All uses updated.
492 (read_index_from_section): Watch for index version 8.
493 (follow_die_sig): If using .gdb_index version <= 7, record the TU as
494 an imported symtab.
495 (write_psymtabs_to_index): Increment version number to 8.
496
497 2013-01-22 Pedro Alves <palves@redhat.com>
498
499 * annotate.c (breakpoint_changed): Skip if breakpoint is not
500 user-visible.
501
502 2013-01-22 Pedro Alves <palves@redhat.com>
503
504 * annotate.c (annotate_breakpoints_changed): Rename to ...
505 (annotate_breakpoints_invalid): ... this. Make static.
506 (breakpoint_changed): Adjust.
507 (_initialize_annotate): Always install the observers. Install a
508 "breakpoint_created" observer.
509 * annotate.h (annotate_breakpoints_changed): Delete declaration.
510 * breakpoint.c (set_breakpoint_condition)
511 (breakpoint_set_commands, do_map_commands_command)
512 (init_raw_breakpoint, clear_command, set_ignore_count)
513 (enable_breakpoint_disp): No longer call
514 annotate_breakpoints_changed.
515
516 2013-01-22 Pedro Alves <palves@redhat.com>
517
518 * annotate.c: Include "inferior.h".
519 (frames_invalid_emitted)
520 (breakpoints_invalid_emitted): New globals.
521 (async_background_execution_p): New function.
522 (annotate_breakpoints_changed, annotate_frames_invalid): Skip
523 emitting the annotation if it has already been emitted.
524 (annotate_display_prompt): New function.
525 * annotate.h (annotate_display_prompt): New declaration.
526 * event-top.c: Include annotate.h.
527 (display_gdb_prompt): Call annotate_display_prompt.
528
529 2013-01-22 Pedro Alves <palves@redhat.com>
530
531 * annotate.c (ignore_count_changed): Delete.
532 (annotate_breakpoints_changed): Don't clear ignore_count_changed.
533 (annotate_ignore_count_change): Delete.
534 (annotate_stopped): Don't emit a delayed breakpoints-changed
535 annotation.
536 * annotate.h (annotate_ignore_count_change): Delete.
537 * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
538 annotate_ignore_count_change.
539
540 2013-01-22 Tom Tromey <tromey@redhat.com>
541
542 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
543 require_rvalue for a register location.
544
545 2013-01-21 Marc Khouzam <marc.khouzam@ericsson.com>
546
547 * breakpoint.c (print_one_breakpoint_location): Add MI
548 field 'thread-groups' when printing a breakpoint.
549 (output_thread_groups): New function.
550
551 2013-01-21 Siva Chandra Reddy <sivachandra@google.com>
552
553 * python/lib/gdb/commands/explore.py
554 (CompoundExplorer.explore_expr): Correct the name of a method
555 being invoked.
556 (ExploreTypeCommand.invoke): Add a missing 'return'.
557
558 2013-01-21 Tom Tromey <tromey@redhat.com>
559
560 * gdb_obstack.h (obconcat): Move declaration here, from...
561 * symfile.h (obconcat): ... here.
562 * gdb_obstack.c: New file.
563 (obconcat): Move from...
564 * symfile.c (obconcat): ... here.
565 * Makefile.in (SFILES): Add gdb_obstack.c.
566 (COMMON_OBS): Add gdb_obstack.o.
567
568 2013-01-21 Tom Tromey <tromey@redhat.com>
569
570 * symfile.h (obsavestring): Don't declare.
571 * symfile.c (obsavestring): Remove.
572 * ada-exp.y: Use obstack_copy0, not obsavestring.
573 * ada-lang.c: Use obstack_copy0, not obsavestring.
574 * coffread.c: Use obstack_copy0, not obsavestring.
575 * cp-namespace.c: Use obstack_copy0, not obsavestring.
576 * dbxread.c: Use obstack_copy0, not obsavestring.
577 * dwarf2read.c: Use obstack_copy0, not obsavestring.
578 * jit.c: Use obstack_copy0, not obsavestring.
579 * mdebugread.c: Use obstack_copy0, not obsavestring.
580 * psymtab.c: Use obstack_copy0, not obsavestring.
581 * stabsread.c: Use obstack_copy0, not obsavestring.
582 * xcoffread.c: Use obstack_copy0, not obsavestring.
583
584 2013-01-21 Tom Tromey <tromey@redhat.com>
585
586 * dwarf2read.c (fixup_go_packaging): Save package name
587 on objfile obstack.
588 * gdbtypes.c (init_type): Don't copy name.
589
590 2013-01-21 Tom Tromey <tromey@redhat.com>
591
592 * dwarf2read.c (struct partial_die_info) <name, scope>: Now
593 const.
594 (struct attribute) <u.str>: Now const.
595 (struct fnfieldlist) <name>: Now const.
596 (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
597 (partial_die_parent_scope): Make return type const.
598 (partial_die_full_name, add_partial_symbol): Update.
599 (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
600 'name' const.
601 (find_file_and_directory): Make 'name' and 'comp_dir' const.
602 (read_file_scope, read_func_scope, dwarf2_add_field)
603 (dwarf2_add_member_fn, read_structure_type)
604 (process_enumeration_scope, read_array_type, read_module_type)
605 (read_base_type, read_subrange_type): Update.
606 (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
607 (new_symbol_full, guess_full_die_structure_name): Update.
608 (dwarf2_canonicalize_name): Return const type. Make 'name' const.
609 (dwarf2_name): Return const type.
610 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
611 const.
612
613 2013-01-21 Tom Tromey <tromey@redhat.com>
614
615 * gdbtypes.c (init_type): Make 'name' const.
616 * gdbtypes.h (init_type): Update.
617
618 2013-01-21 Tom Tromey <tromey@redhat.com>
619
620 * buildsym.c (patch_subfile_names): Use set_last_source_file.
621 (start_symtab): Make 'name' and 'dirname' const. Use
622 set_last_source_file.
623 (restart_symtab, reset_symtab_globals): Use set_last_source_file.
624 (last_source_file): Define. Now static.
625 (set_last_source_file, get_last_source_file): New functions.
626 * buildsym.h (last_source_file): Don't declare.
627 (start_symtab): Update.
628 (set_last_source_file, get_last_source_file): Declare.
629 * coffread.c (complete_symtab): Use set_last_source_file.
630 (coff_end_symtab): Likewise.
631 (coff_symtab_read): Use set_last_source_file, get_last_source_file.
632 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
633 set_last_source_file.
634 (process_one_symbol): Use get_last_source_file.
635 * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
636 (psymtab_to_symtab_1): Use get_last_source_file.
637 * xcoffread.c (process_linenos): Use get_last_source_file.
638 (complete_symtab): Use set_last_source_file.
639 (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
640 (scan_xcoff_symtab): Use set_last_source_file.
641
642 2013-01-21 Tom Tromey <tromey@redhat.com>
643
644 * symtab.c (struct demangled_name_entry) <mangled>: Now const.
645 (symbol_set_names): Remove casts. Handle field const-ness.
646
647 2013-01-21 Tom Tromey <tromey@redhat.com>
648
649 * dwarf2read.c (new_symbol_full): Remove cast.
650 * symtab.c (symbol_set_demangled_name): Make 'name' const.
651 * symtab.h (symbol_set_demangled_name): Update.
652
653 2013-01-21 Tom Tromey <tromey@redhat.com>
654
655 * main.c (captured_main): Call bfd_init.
656
657 2013-01-21 Tom Tromey <tromey@redhat.com>
658
659 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
660 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
661 * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
662 * NEWS: Update.
663
664 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
665
666 * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
667
668 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
669
670 Fix gdb.fortran/common-block.exp crash in PIE mode.
671 * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
672 LOC_COMMON_BLOCK.
673 * f-valprint.c (info_common_command_for_block): Expect
674 LOC_COMMON_BLOCK in gdb_assert.
675 * symtab.h (struct general_symbol_info): Update comment for the
676 common_block member.
677 (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
678 (enum address_class): New member LOC_COMMON_BLOCK.
679
680 2013-01-18 David Blaikie <dblaikie@gmail.com>
681
682 * MAINTAINERS (Write After Approval): Add "David Blaikie".
683
684 2013-01-18 Tom Tromey <tromey@redhat.com>
685
686 PR c++/14999:
687 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
688 Call require_rvalue.
689
690 2013-01-18 Yao Qi <yao@codesourcery.com>
691
692 * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
693 (dbx_read_symtab): New declaration.
694 (dbx_psymtab_to_symtab): Delete.
695 (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
696 Rename parameter PST to SELF. Exchanged two parameters.
697 (start_psymtab): Caller update.
698 * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
699 (dwarf2_read_symtab): New declaration.
700 (dwarf2_psymtab_to_symtab): Delete.
701 (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
702 Rename parameter PST to SELF. Exchanged two parameters.
703 (create_partial_symtab): Caller update.
704 * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
705 (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
706 Rename parameter PST to SELF. Exchanged two parameters.
707 (parse_partial_symbols, new_psymtab): Caller update.
708 * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
709 two parameters.
710 * psymtab.c (psymtab_to_symtab): Caller update.
711 * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
712 (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
713 Rename parameter PST to SELF. Exchanged two parameters.
714 (xcoff_start_psymtab): Caller update.
715
716 2013-01-18 Yao Qi <yao@codesourcery.com>
717
718 * infrun.c (proceed): Rename local variable 'oneproc' to
719 'force_step'.
720
721 2013-01-17 Doug Evans <dje@google.com>
722
723 * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
724 (dw2_build_type_unit_groups): Delete. All uses updated.
725
726 * symtab.h (struct symbol_search): Add comment.
727
728 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
729
730 * symtab.c (compare_filenames_for_search): New comment for
731 HAS_DRIVE_SPEC.
732
733 2013-01-17 Tom Tromey <tromey@redhat.com>
734
735 * cp-abi.c (cp_abi_completer): Fix typo in assignment.
736
737 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
738
739 * symtab.c (iterate_over_some_symtabs): New variable cleanups,
740 initialize it by existing make_cleanup. Call new do_cleanups.
741
742 2013-01-17 Tom Tromey <tromey@redhat.com>
743
744 * cp-abi.c (cp_abi_completer): New function.
745 (_initialize_cp_abi): Set completer for "set cp-abi".
746
747 2013-01-17 Tom Tromey <tromey@redhat.com>
748
749 * mem-break.c: Remove obsolete comment.
750 * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
751
752 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
753
754 * jit.c (jit_reader_load_command): Interpret the jit reader name
755 as an absolute path if it begins with a forward slash.
756
757 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
758
759 PR gdb/14550
760
761 * jit.c (finalize_symtab): Ensure that only the global block has a
762 NULL superblock.
763
764 2013-01-17 Pedro Alves <palves@redhat.com>
765
766 * acinclude.m4: Include ../config/plugins.m4,
767 ../config/largefile.m4 and ../config/lead-dot.m4. Add comments.
768 * Makefile.in (aclocal_m4_deps): Update.
769 * aclocal.m4: Renegerate.
770
771 2013-01-16 Doug Evans <dje@google.com>
772
773 * contrib/cc-with-tweaks.sh: Add references to Fission docs.
774
775 2013-01-16 Pedro Alves <palves@redhat.com>
776 Tom Tromey <tromey@redhat.com>
777
778 PR cli/7221:
779 * NEWS: Add "catch signal".
780 * breakpoint.c (base_breakpoint_ops): No longer static.
781 (bpstat_explains_signal): New function.
782 (init_catchpoint): No longer static.
783 (base_breakpoint_explains_signal): New function.
784 (base_breakpoint_ops): Initialize new field.
785 * breakpoint.h (enum bpstat_signal_value): New.
786 (struct breakpoint_ops) <explains_signal>: New field.
787 (bpstat_explains_signal): Remove macro, declare as function.
788 (base_breakpoint_ops, init_catchpoint): Declare.
789 * break-catch-sig.c: New file.
790 * inferior.h (signal_catch_update): Declare.
791 * infrun.c (signal_catch): New global.
792 (handle_syscall_event): Update for change to
793 bpstat_explains_signal.
794 (handle_inferior_event): Likewise. Always handle random signals
795 via bpstats.
796 (signal_cache_update): Check signal_catch.
797 (signal_catch_update): New function.
798 (_initialize_infrun): Initialize signal_catch.
799 * Makefile.in (SFILES): Add break-catch-sig.c.
800 (COMMON_OBS): Add break-catch-sig.o.
801
802 2013-01-16 Tom Tromey <tromey@redhat.com>
803
804 * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
805 (print_one_catch_solib, print_one_catch_syscall)
806 (print_one_catch_exec, print_one_exception_catchpoint): Emit
807 "catch-type".
808
809 2013-01-16 Yao Qi <yao@codesourcery.com>
810
811 * printcmd.c (current_display_number): Make it static.
812
813 2013-01-16 Yao Qi <yao@codesourcery.com>
814
815 * infcmd.c (step_once): Don't check '!single_inst' as it was
816 checked before.
817
818 2013-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
819
820 * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
821
822 2013-01-14 Tom Tromey <tromey@redhat.com>
823
824 * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
825 set command.
826 * command.h (add_setshow_string_noescape_cmd): Update.
827 * corefile.c (set_gnutarget_command): Remove trailing whitespace.
828 (complete_set_gnutarget): New function.
829 (_initialize_core): Set the "set gnutarget" completer.
830
831 2013-01-14 Tom Tromey <tromey@redhat.com>
832
833 PR symtab/14442:
834 * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
835 (c_type_print_modifier): Likewise.
836 * dwarf2read.c (read_tag_restrict_type): New function.
837 (read_type_die_1): Handle DW_TAG_restrict_type.
838 * gdbtypes.c (make_restrict_type): New function.
839 (recursive_dump_type): Handle TYPE_RESTRICT.
840 * gdbtypes.h (enum type_flag_values): Renumber.
841 (enum type_instance_flag_value): Add
842 TYPE_INSTANCE_FLAG_RESTRICT.
843 (TYPE_RESTRICT): New macro.
844 (make_restrict_type): Declare.
845
846 2013-01-14 Tom Tromey <tromey@redhat.com>
847
848 PR symtab/14931:
849 * psymtab.c (struct psymtab_state): New.
850 (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
851 functions.
852 * psympriv.h (make_cleanup_discard_psymtabs): Declare.
853 * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
854
855 2013-01-14 Richard Sharman <richard_sharman@mitel.com>
856 Pedro Alves <palves@redhat.com>
857
858 PR remote/14786
859
860 * remote.c (remote_threads_info): Make a copy of the reply from
861 qfThreadInfo and use that instead of rs->buf.
862
863 2013-01-14 Yao Qi <yao@codesourcery.com>
864
865 * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
866 (dbx_psymtab_to_symtab): Likewise.
867 * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
868 * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
869 * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
870
871 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
872
873 * parse.c (parse_exp_in_context): New variable inner_chain. Call
874 make_cleanup_restore_current_language. Call set_language. Move
875 OLD_CHAIN and INNER_CHAIN cleanups.
876 * utils.c (do_restore_current_language)
877 (make_cleanup_restore_current_language): New functions.
878 * utils.h (make_cleanup_restore_current_language): New declaration.
879
880 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
881
882 * source.c (symtab_to_fullname): Apply rewrite_source_path also for
883 non-existing files.
884
885 * source.c (symtab_to_fullname): Do not prepend DIRNAME for
886 non-existing files if FILENAME is already absolute.
887
888 2013-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
889
890 * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
891 fputs_filtered. Append trailing newline.
892
893 2013-01-11 Yao Qi <yao@codesourcery.com>
894 Stan Shebs <stan@codesourcery.com>
895
896 * psymtab.c (init_psymbol_list): Clarify the comment.
897
898 2013-01-11 Yao Qi <yao@codesourcery.com>
899
900 * breakpoint.c (print_one_breakpoint_location): Remove dead code.
901 (update_dprintf_command_list): Assert that 'printf_line' is
902 non-null. Remove condition check.
903
904 2013-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
905
906 Code cleanup.
907 * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
908 type const char *.
909 * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
910 const char *.
911 * tui/tui-source.h (tui_source_is_displayed): Likewise.
912
913 2013-01-09 Anthony Green <green@moxielogic.com>
914
915 * cp-abi.c (cplus_print_vtable): Don't return value from void
916 function.
917 * ada-lang.c (re_set_catch_assert): Ditto.
918
919 2013-01-09 Doug Evans <dje@google.com>
920
921 * symfile.h (quick_symbol_functions): Delete member
922 pre_expand_symtabs_matching. All uses removed.
923 * dwarf2read.c (dw2_lookup_symbol): Implement.
924 (dw2_do_expand_symtabs_matching): Delete.
925 (dw2_pre_expand_symtabs_matching): Delete.
926 (struct dw2_symtab_iterator): New type.
927 (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
928 (dw2_expand_symtabs_for_function): Rewrite.
929 (dwarf2_gdb_index_functions): Update.
930 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
931 (psym_functions): Update.
932
933 2013-01-09 Tom Tromey <tromey@redhat.com>
934
935 * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
936 * configure: Rebuild.
937 * configure.ac: Add somread.o to the build if BFD has SOM
938 support.
939 * somread.c: Include som/aout.h, not syms.h.
940 (som_symtab_read): Use som_external_symbol_dictionary_record.
941 Unpack records manually.
942 (_initialize_somread): Declare.
943
944 2012-01-08 Mike Frysinger <vapier@gentoo.org>
945
946 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
947 Cast return_address to 64bits.
948
949 2013-01-08 Hui Zhu <hui_zhu@mentor.com>
950
951 * printcmd.c: Remove define of function output_command.
952 * tracepoint.c: Remove extern of function output_command.
953 * valprint.h: (output_command): New extern.
954
955 2013-01-07 Tom Tromey <tromey@redhat.com>
956
957 * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
958 Remove.
959 (objc_language_defn): Use c_printchar, c_printstr,
960 c_emit_char.
961
962 2013-01-07 Tom Tromey <tromey@redhat.com>
963
964 PR cli/7719:
965 * NEWS: Update.
966 * ada-valprint.c (printstr, print_field_values): Remove
967 "inspect_it" code.
968 * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
969 code.
970 * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
971 code.
972 * m2-lang.c (m2_printstr): Remove "inspect_it" code.
973 * main.c (captured_main): Remove "epoch" argument.
974 * objc-lang.c (objc_printstr): Remove "inspect_it" code.
975 * p-lang.c (pascal_printstr): Remove "inspect_it" code.
976 * p-valprint.c (pascal_object_print_value_fields): Remove
977 "inspect_it" code.
978 * printcmd.c (print_command_1): Remove 'inspect' argument.
979 (print_command, call_command): Update.
980 (inspect_command): Remove.
981 (_initialize_printcmd): Make "inspect" an alias for "print".
982 * top.c (epoch_interface): Remove.
983 * top.h (epoch_interface): Remove.
984 * valprint.c (user_print_options): Update.
985 (print_converted_chars_to_obstack): Remove "inspect_it" code.
986 * valprint.h (struct value_print_options) <inspect_it>: Remove
987 field.
988
989 2013-01-04 Tom Tromey <tromey@redhat.com>
990
991 * valprint.h (read_string): Add 'extern'.
992
993 2013-01-07 Joel Brobecker <brobecker@adacore.com>
994
995 * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
996 used to decide whether to define darwin_read_dyld_info or not.
997
998 2013-01-03 Pierre Muller <muller@sourceware.org>
999
1000 * main.c (relocate_gdb_directory): Avoid calling stat function
1001 if DIR is empty.
1002
1003 2013-01-03 Yao Qi <yao@codesourcery.com>
1004
1005 * psymtab.c (fixup_psymbol_section): Update declaration.
1006 (fixup_psymbol_section): Remove code returning value.
1007
1008 2013-01-03 Yao Qi <yao@codesourcery.com>
1009
1010 * symtab.h: Remove some out of date comments.
1011 (enum exception_event_kind): Move it ...
1012 * breakpoint.c: ... here.
1013
1014 2013-01-02 Iain Sandoe <developer@sandoe-acoustics.co.uk>
1015
1016 PR gdb/14405
1017 * darwin-nat.c (darwin_read_dyld_info): Only build if
1018 TASK_DYLD_INFO_COUNT is defined.
1019 (darwin_xfer_partial): Call darwin_read_dyld_info only if
1020 TASK_DYLD_INFO_COUNT is defined.
1021
1022 2013-01-02 Tom Tromey <tromey@redhat.com>
1023
1024 * symfile.h (struct ecoff_debug_hack): Remove.
1025 * objfiles.c: Don't include mdebugread.h.
1026
1027 2013-01-02 Tom Tromey <tromey@redhat.com>
1028
1029 * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
1030 * configure.ac: Check for Mach-O support in BFD. Update
1031 CONFIG_OBS.
1032 * configure: Rebuild.
1033
1034 2013-01-02 Tom Tromey <tromey@redhat.com>
1035
1036 * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
1037 * configure.ac: Use GDB_AC_CHECK_BFD.
1038 * configure: Rebuild.
1039
1040 2013-01-01 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
1041
1042 * MAINTAINERS: Update my email.
1043
1044 2013-01-01 Joel Brobecker <brobecker@adacore.com>
1045
1046 * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
1047
1048 2013-01-01 Joel Brobecker <brobecker@adacore.com>
1049
1050 * rs6000-nat.c (bss_data_overlap): New function.
1051 (vmap_symtab): Use it to adjust the .bss section's offset.
1052
1053 2013-01-01 Joel Brobecker <brobecker@adacore.com>
1054
1055 Update year range in copyright notice of all files.
1056
1057 2013-01-01, 13 Joel Brobecker <brobecker@adacore.com>
1058
1059 * top.c (print_gdb_version): Update copyright year.
1060
1061 For older changes see ChangeLog-2012.
1062 \f
1063 Local Variables:
1064 mode: change-log
1065 left-margin: 8
1066 fill-column: 74
1067 version-control: never
1068 coding: utf-8
1069 End: