1 2012-01-24 Pedro Alves <palves@redhat.com>
3 * breakpoint.c (bpstat_check_location, bpstat_stop_status,
4 pc_at_non_inline_function): Add `ws' parameter, and pass it down.
5 (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
6 (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
8 (breakpoint_hit_ranged_breakpoint): Add `ws' parameter. Return
9 false for events other than TARGET_SIGNAL_TRAP.
10 (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
12 (bkpt_breakpoint_hit): Add `ws' parameter. Return false for
13 events other than TARGET_SIGNAL_TRAP.
14 (tracepoint_breakpoint_hit): Add `ws' parameter.
15 * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
17 (bpstat_stop_status): Same.
18 (pc_at_non_inline_function): Same.
19 * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
20 to pass the current event's waitstatus to bpstat_stop_status
21 and pc_at_non_inline_function.
23 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
26 * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
27 Update the function comment for it.
28 (source_script_with_search): Call make_cleanup_fclose for STREAM.
29 * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
32 2012-01-24 Pedro Alves <palves@redhat.com>
34 * breakpoint.c (bpstat_stop_status): Moving clearing print_it
35 outside `bs->stop' block.
36 (bpstat_what): Rework bp_shlib_event handling.
37 (internal_bkpt_check_status): If the breakpoint is a
38 bp_shlib_event, then set bs->stop and bs->print if
39 stop_on_solib_events is set.
41 2012-01-24 Gary Benson <gbenson@redhat.com>
43 Delete #if 0'd out code.
44 * stack.c (print_frame_label_vars): Remove.
45 (catch_info): Likewise.
46 (_initialize_stack): Remove "info catch" command.
47 * NEWS: Mention the above.
49 2012-01-24 Pedro Alves <palves@redhat.com>
51 * remote.c (remote_add_inferior): New `fake_pid_p' parameter. Use
53 (remote_notice_new_inferior): If the remote end doesn't support
54 the multiprocess extensions, then the PID is fake.
55 (add_current_inferior_and_thread): New.
56 (remote_start_remote): Use it.
57 (extended_remote_attach_1): Adjust.
58 (extended_remote_create_inferior_1): Use
59 add_current_inferior_and_thread.
61 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
63 Fix watchpoints to be specific for each inferior.
64 * breakpoint.c (watchpoint_in_thread_scope): Verify also
65 current_program_space.
66 * i386-nat.c (i386_inferior_data_cleanup): New.
67 (i386_inferior_data_get): Replace variable inf_data_local by an
69 (i386_use_watchpoints): Initialize i386_inferior_data.
70 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
71 specific iterate_over_lwps.
73 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
75 Fix watchpoints across inferior fork.
76 * amd64-linux-nat.c (update_debug_registers_callback): Update the
77 comment for linux_nat_iterate_watchpoint_lwps.
78 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
79 linux_nat_iterate_watchpoint_lwps.
80 (amd64_linux_prepare_to_resume): New comment on Linux kernel.
81 * i386-linux-nat.c (update_debug_registers_callback): Update the
82 comment for linux_nat_iterate_watchpoint_lwps.
83 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
84 linux_nat_iterate_watchpoint_lwps.
85 (i386_linux_prepare_to_resume): New comment on Linux kernel.
86 * i386-nat.c: Include inferior.h.
88 (i386_inferior_data, struct i386_inferior_data)
89 (i386_inferior_data_get): New.
90 (i386_debug_reg_state): Use i386_inferior_data_get.
91 (i386_cleanup_dregs, i386_update_inferior_debug_regs)
92 (i386_insert_watchpoint, i386_remove_watchpoint)
93 (i386_stopped_data_address, i386_insert_hw_breakpoint)
94 (i386_remove_hw_breakpoint): New variable state, use
95 i386_debug_reg_state instead of DR_MIRROR.
96 * linux-nat.c (delete_lwp): New declaration.
97 (num_lwps): Move here from downwards.
98 (delete_lwp_cleanup): New.
99 (linux_child_follow_fork): Create new child_lp, call
100 linux_nat_new_thread and linux_nat_prepare_to_resume before calling
102 (num_lwps): Move upwards.
103 (linux_nat_iterate_watchpoint_lwps): New.
104 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
105 (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
107 2012-01-24 Joel Brobecker <brobecker@adacore.com>
111 2012-01-23 Pedro Alves <palves@redhat.com>
113 * top.c (caution): Rename to ...
115 (show_caution): Rename to ...
116 (show_confirm): ... this.
117 (quit_cover): Adjust.
119 * top.h (caution): Rename to ...
121 * utils.c (internal_vproblem, defaulted_query): Adjust.
123 2012-01-23 Pedro Alves <palves@redhat.com>
125 * top.c (caution): Update comment.
126 (execute_command): Don't consider the current value of `caution'.
128 2012-01-23 Jan Kratochvil <jan.kratochvil@redhat.com>
130 * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
132 2012-01-23 Ulrich Weigand <ulrich.weigand@linaro.org>
134 * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
135 * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
136 * target.c (target_fileio_pwrite): Remove buffer address from
138 (target_fileio_pread): Likewise.
140 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
142 * NEWS: Document remote "info proc" and "generate-core-file".
144 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
146 * gdbarch.sh (find_memory_regions): New callback.
147 * gdbarch.c, gdbarch.h: Regenerate.
149 * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
150 callback before falling back to target method.
152 * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
153 (linux_target_install_ops): No longer install it.
155 * linux-tdep.c (linux_find_memory_regions): New function.
156 (linux_init_abi): Install it.
158 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
160 * gdbarch.sh (make_corefile_notes): New architecture callback.
161 * gdbarch.c: Regenerate.
162 * gdbarch.h: Likewise.
164 * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
165 before target_make_corefile_notes. If NULL is returned, the
166 target does not support core file generation.
168 * linux-nat.c: Include "linux-tdep.h".
169 (find_signalled_thread, find_stop_signal): Remove.
170 (linux_nat_do_thread_registers): Likewise.
171 (struct linux_nat_corefile_thread_data): Likewise.
172 (linux_nat_corefile_thread_callback): Likewise.
173 (iterate_over_spus): Likewise.
174 (struct linux_spu_corefile_data): Likewise.
175 (linux_spu_corefile_callback): Likewise.
176 (linux_spu_make_corefile_notes): Likewise.
177 (linux_nat_collect_thread_registers): New function.
178 (linux_nat_make_corefile_notes): Replace contents by call to
179 linux_make_corefile_notes passing linux_nat_collect_thread_registers
180 as native-only callback.
182 * linux-tdep.h: Include "bfd.h".
183 (struct regcache): Add forward declaration.
184 (linux_collect_thread_registers_ftype): New typedef.
185 (linux_make_corefile_notes): Add prototype.
186 * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
187 "regset.h", and "elf-bfd.h".
188 (find_signalled_thread, find_stop_signal): New functions.
189 (linux_spu_make_corefile_notes): Likewise.
190 (linux_collect_thread_registers): Likewise.
191 (struct linux_corefile_thread_data): New data structure.
192 (linux_corefile_thread_callback): New funcion.
193 (linux_make_corefile_notes): Likewise.
194 (linux_make_corefile_notes_1): Likewise.
195 (linux_init_abi): Install it.
197 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
199 * gdbarch.sh (info_proc): New callback.
200 * gdbarch.c, gdbarch.h: Regenerate.
202 * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
203 before falling back to the target info_proc callback.
205 * linux-nat.c: Do not include "cli/cli-utils.h".
206 (linux_nat_info_proc): Remove.
207 (linux_target_install_ops): No longer install it.
209 * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
210 (read_mapping): New function.
211 (linux_info_proc): Likewise.
212 (linux_init_abi): Install it.
214 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
216 * defs.h (enum info_proc_what): Moved here from linux-nat.c
217 * infcmd.c: (info_proc_cmd_1): New function.
218 (info_proc_cmd): New function, moved here from equivalent routine
219 orignally in linux-nat.c.
220 (info_proc_cmd_mappings): Likewise.
221 (info_proc_cmd_stat): Likewise.
222 (info_proc_cmd_status): Likewise.
223 (info_proc_cmd_cwd): Likewise.
224 (info_proc_cmd_cmdline): Likewise.
225 (info_proc_cmd_exe): Likewise.
226 (info_proc_cmd_all): Likewise.
227 (_initialize_infcmd): Install "info proc" command and subcommands.
229 * target.h (struct target_ops): Add to_info_proc.
230 (target_info_proc): Add prototype.
231 * target.c (target_info_proc): New function.
233 * procfs.c (procfs_info_proc): Add prototype.
234 (info_proc_cmd): Rename into ...
235 (procfs_info_proc): ... this. Update argument types as appropriate
236 for a to_info_proc implementation. Handle "what" argument.
237 (procfs_target): Install procfs_info_proc.
238 (_initialize_procfs): No longer install "info proc" command.
240 * linux-nat.c: (enum info_proc_what): Remove.
241 (linux_nat_info_proc_cmd_1): Rename into ...
242 (linux_nat_info_proc): ... this. Update argument types as appropriate
243 for a to_info_proc implementation.
244 (linux_nat_info_proc_cmd): Remove.
245 (linux_nat_info_proc_cmd_mappings): Likewise.
246 (linux_nat_info_proc_cmd_stat): Likewise.
247 (linux_nat_info_proc_cmd_status): Likewise.
248 (linux_nat_info_proc_cmd_cwd): Likewise.
249 (linux_nat_info_proc_cmd_cmdline): Likewise.
250 (linux_nat_info_proc_cmd_exe): Likewise.
251 (linux_nat_info_proc_cmd_all): Likewise.
252 (linux_target_install_ops): Install linux_nat_info_proc.
253 (_initialize_linux_nat): No longer install "info proc" command
256 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
258 * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
259 * config.in, configure: Regenerate.
261 * target.h (struct target_ops): Add to_fileio_readlink.
262 (target_fileio_readlink): Add prototype.
263 * target.c (target_fileio_readlink): New function.
265 * inf-child.c: Conditionally include <sys/param.h>.
266 (inf_child_fileio_readlink): New function.
267 (inf_child_target): Install it.
269 * remote.c (PACKET_vFile_readlink): New enum value.
270 (remote_hostio_readlink): New function.
271 (init_remote_ops): Install it.
272 (_initialize_remote): Handle vFile:readlink packet type.
274 2012-01-20 Pedro Alves <palves@redhat.com>
275 Ulrich Weigand <ulrich.weigand@linaro.org>
277 * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
278 * config.in, configure: Regenerate.
280 * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
281 to_fileio_pread, to_fileio_close, to_fileio_unlink.
282 (target_fileio_open): Add prototype.
283 (target_fileio_pwrite): Likewise.
284 (target_fileio_pread): Likewise.
285 (target_fileio_close): Likewise.
286 (target_fileio_unlink): Likewise.
287 (target_fileio_read_alloc): Likewise.
288 (target_fileio_read_stralloc): Likewise.
290 * target.c: Include "gdb/fileio.h".
291 (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
292 (default_fileio_target): New function.
293 (target_fileio_open): Likewise.
294 (target_fileio_pwrite): Likewise.
295 (target_fileio_pread): Likewise.
296 (target_fileio_close): Likewise.
297 (target_fileio_unlink): Likewise.
298 (target_fileio_close_cleanup): Likewise.
299 (target_fileio_read_alloc_1): Likewise.
300 (target_fileio_read_alloc): Likewise.
301 (target_fileio_read_stralloc): Likewise.
303 * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
304 <fcntl.h>, and <unistd.h>.
305 (inf_child_fileio_open_flags_to_host): New function.
306 (inf_child_errno_to_fileio_error): Likewise.
307 (inf_child_fileio_open): Likewise.
308 (inf_child_fileio_pwrite): Likewise.
309 (inf_child_fileio_pread): Likewise.
310 (inf_child_fileio_close): Likewise.
311 (inf_child_fileio_unlink): Likewise.
312 (inf_child_target): Install to_fileio routines.
314 * remote.c (init_remote_ops): Install to_fileio routines.
316 2012-01-20 Pedro Alves <palves@redhat.com>
317 Ulrich Weigand <ulrich.weigand@linaro.org>
319 * remote.c (remote_multi_process_p): Only check for multi-process
320 protocol feature, do not check for extended protocol.
321 (remote_supports_multi_process): Check for extended protocol here.
322 (set_general_process): Likewise.
323 (extended_remote_kill): Likewise.
324 (remote_pid_to_str): Likewise.
325 (remote_query_supported): Always query multiprocess mode.
327 2012-01-20 Pedro Alves <palves@redhat.com>
328 Ulrich Weigand <ulrich.weigand@linaro.org>
330 * inferior.h (struct inferior): Add fake_pid_p.
331 * inferior.c (exit_inferior_1): Clear fake_pid_p.
332 * remote.c (remote_start_remote): Set fake_pid_p if we have to use
333 magic_null_ptid since the remote side doesn't provide a real PID.
335 2012-01-19 Tom Tromey <tromey@redhat.com>
337 * NEWS: Combine the two Python sections.
339 2012-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
341 * target.h (target_close): Update comment on the target's unpush state.
343 2012-01-19 Pedro Alves <palves@redhat.com>
345 * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
346 linux_nat_async directly instead of going through the target
348 * target.c (unpush_target): Close target after unpushing it, not
351 2012-01-19 Gary Benson <gbenson@redhat.com>
353 * mdebugread.c (sort_blocks): Replace integer constants with ones
354 derived from FIRST_LOCAL_BLOCK.
356 2012-01-18 Paul Pluzhnikov <ppluzhnikov@google.com>
357 Jan Kratochvil <jan.kratochvil@redhat.com>
360 * symfile.c (find_separate_debug_file): New function.
361 (terminate_after_last_dir_separator): Likewise.
362 (find_separate_debug_file_by_debuglink): Also try realpath.
363 * configure.ac (AC_CHECK_FUNCS): Add lstat.
364 * configure: Regenerate.
365 * config.in: Regenerate.
367 2012-01-18 Doug Evans <dje@google.com>
369 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
370 (main.o): Remove rule.
371 * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
372 (--with-sysroot): Rewrite.
373 * configure: Regenerate.
374 * config.in: Regenerate.
376 2012-01-18 Sergio Durigan Junior <sergiodj@redhat.com>
378 * parse.c (initialize_expout): New function.
379 (reallocate_expout): Likewise.
380 (parse_exp_in_context): Use `initialize_expout' and
381 `reallocate_expout' when appropriate.
383 2012-01-18 Pedro Alves <palves@redhat.com>
385 * record.c (struct record_breakpoint, record_breakpoint_p)
386 (record_breakpoints): New.
387 (record_insert_breakpoint, record_remove_breakpoint): Manage
388 record breakpoints list. Only remove breakpoints from the
389 inferior if they had been inserted there in the first place.
391 2012-01-17 Doug Evans <dje@google.com>
393 * linespec.c (decode_line_internal): Don't call symtabs_from_filename
394 if we know we don't have a file name to look for.
396 2012-01-17 Pedro Alves <palves@redhat.com>
398 * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
399 the frame's stop reason is UNWIND_UNAVAILABLE.
401 2012-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
403 Fix compilation error.
404 * m2-exp.y (yyerror): Use ANSI C prototype.
406 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
408 * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
409 (growbuf_by_size): Likewise.
411 * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
412 (modblock): Remove variable (was #if 0'ed).
413 (parse_number): Convert prototype from K&R to ANSI C.
415 * objc-exp.y (parse_number): Likewise.
417 (yylex): Remove #if 0'ed code.
418 * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
421 2012-01-16 Tom Tromey <tromey@redhat.com>
424 * symtab.h (compare_filenames_for_search): Declare.
425 * symtab.c (compare_filenames_for_search): New function.
426 (iterate_over_some_symtabs): Use it.
427 * symfile.h (struct quick_symbol_functions)
428 <map_symtabs_matching_filename>: Change spec.
429 * psymtab.c (partial_map_symtabs_matching_filename): Use
430 compare_filenames_for_search. Update for new spec.
431 * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
432 compare_filenames_for_search. Update for new spec.
433 * breakpoint.c (clear_command): Use compare_filenames_for_search.
435 2012-01-16 Tom Tromey <tromey@redhat.com>
438 * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
439 (struct main_type) <flag_flag_enum>: New field.
440 * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
442 * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
444 * python/lib/gdb/printing.py (_EnumInstance): New class.
445 (FlagEnumerationPrinter): Likewise.
447 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
449 * breakpoint.c (create_sals_from_address_default): New function.
450 (create_breakpoints_sal_default): Likewise.
451 (decode_linespec_default): Likewise.
452 (is_marker_spec): Removed.
453 (strace_marker_p): New function.
454 (init_breakpoint_sal): Using `strace_marker_p' instead of
456 (create_breakpoint): Call method `create_sals_from_address' from
457 breakpoint_ops, replacing code that created SALs conditionally
458 on the type of the breakpoint. Call method `create_breakpoints_sal',
459 replacing code that created breakpoints conditionally on the type
461 (base_breakpoint_create_sals_from_address): New function.
462 (base_breakpoint_create_breakpoints_sal): Likewise.
463 (base_breakpoint_decode_linespec): Likewise.
464 (base_breakpoint_ops): Add methods
465 `base_breakpoint_create_sals_from_address',
466 `base_breakpoint_create_breakpoints_sal' and
467 `base_breakpoint_decode_linespec'.
468 (bkpt_create_sals_from_address): New function.
469 (bkpt_create_breakpoints_sal): Likewise.
470 (bkpt_decode_linespec): Likewise.
471 (tracepoint_create_sals_from_address): Likewise.
472 (tracepoint_create_breakpoints_sal): Likewise.
473 (tracepoint_decode_linespec): Likewise.
474 (strace_marker_create_sals_from_address): Likewise.
475 (strace_marker_create_breakpoints_sal): Likewise.
476 (strace_marker_decode_linespec): Likewise.
477 (strace_marker_breakpoint_ops): New variable.
478 (addr_string_to_sals): Remove `marker_spec'. Call method
479 `decode_linespec' from breakpoint_ops, replacing code that decoded
480 an address string into a SAL. Use `strace_marker_p' instead of
482 (strace_command): Decide whether we are dealing with a static
483 tracepoint with marker or not. Use the appropriate breakpoint_ops.
484 (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
485 * breakpoint.h (linespec_result, linespec_sals): New forward
487 (breakpoint_ops) <create_sals_from_address>,
488 <create_breakpoints_sal>, <decode_linespec>: New methods.
490 2012-01-14 Doug Evans <dje@google.com>
492 * NEWS: Update text for "maint set python print-stack".
493 It is deprecated in gdb 7.4 and deleted in 7.5.
495 2012-01-13 Eli Zaretskii <eliz@gnu.org>
497 * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
500 2012-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
502 * configure: Regenerate.
503 * config.in: Regenerate.
505 2012-01-12 Keith Seitz <keiths@redhat.com>
508 * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
509 (ANONYMOUS_UNION_NAME): Define.
510 (is_path_expr_parent): New function.
511 (get_path_expr_parent): New function.
512 (is_anonymous_child): New function.
513 (create_child_with_value): If the child is anonymous and without
514 a name, assign an object name to it.
515 (c_describe_child): Use get_path_expr_parent to determine
516 the parent expression.
517 If there field represents an anonymous struct or union and
518 has no name, set an appropriate display name and expression.
519 (cplus_describe_child): Likewise.
521 2012-01-12 Pedro Alves <palves@redhat.com>
523 * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
524 available when %ebp is found to be zero (outermost).
526 2012-01-11 Andreas Tobler <andreast@fgznet.ch>
528 * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
529 an internal gdb_static_assert.
530 * mi/mi-common.c: Rename static_assert to gdb_static_assert.
532 2012-01-11 Tom Tromey <tromey@redhat.com>
535 * breakpoint.c (_initialize_breakpoint): Fix help for "catch
536 catch" and "catch throw".
538 2012-01-11 Paul Hilfinger <hilfingr@adacore.com>
540 * blockframe.c (block_innermost_frame): Start search from selected
541 frame, if present, or otherwise the current frame.
543 * c-exp.y (variable): Update innermost_block for
544 'block COLONCOLON NAME' clause.
545 * m2-exp.y (variable): Ditto.
546 * objc-exp.y (variable): Ditto.
548 2012-01-10 Tom Tromey <tromey@redhat.com>
551 * python/python.c (finish_python_initialization): Set sys.argv.
553 2012-01-10 Doug Evans <dje@google.com>
555 * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd". New arg
556 "want_line_info". All callers updated.
557 (dwarf_decode_lines_1): New function.
558 (handle_DW_AT_stmt_list): Add function comment.
559 New arg "want_line_info". All callers updated.
560 (read_file_scope,read_type_unit_scope): Move comment from
561 handle_DW_AT_stmt_list to here.
563 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
565 Fix regression after libiberty/ update for GCC PR 6057 and others.
566 * c-exp.y (operator) <OPERATOR DELETE>
567 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
568 * cp-name-parser.y (fill_comp, make_operator, make_dtor)
569 (make_builtin_type, make_name): New variable i, add gdb_assert.
570 (operator) <OPERATOR NEW>: Update ARGS to 3.
571 (operator) <OPERATOR DELETE>: Add trailing space.
572 (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
573 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
574 * cp-support.c (cp_canonicalize_string): Check NULL from
575 cp_comp_to_string, call warning and return.
577 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
579 Fix duplicate .o files after omitting libbfd.a.
580 * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
581 (SFILES): Add corelow.c.
582 (COMMON_OBS): Add corelow.o.
583 (ALLDEPFILES): Remove corelow.c.
584 * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
585 * config/alpha/alpha-osf3.mh: Likewise.
586 * config/alpha/fbsd.mh: Likewise.
587 * config/arm/nbsdaout.mh: Likewise.
588 * config/arm/nbsdelf.mh: Likewise.
589 * config/i386/i386gnu.mh: Likewise.
590 * config/ia64/hpux.mh: Likewise.
591 * config/ia64/linux.mh: Likewise.
592 * config/m32r/linux.mh: Likewise.
593 * config/m68k/linux.mh: Likewise.
594 * config/mips/irix5.mh: Likewise.
595 * config/mips/irix6.mh: Likewise.
596 * config/pa/hpux.mh: Likewise.
597 * config/pa/linux.mh: Likewise.
598 * config/powerpc/aix.mh: Likewise.
599 * config/sparc/linux.mh: Likewise.
600 * config/sparc/linux64.mh: Likewise.
601 * config/sparc/sol2.mh: Likewise.
602 * config/vax/vax.mh: Likewise.
603 * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
604 (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
605 (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
606 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
607 (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
608 (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
609 (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
610 (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
611 (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
612 (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
613 (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
614 (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
615 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
616 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
617 (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
618 (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
619 (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
620 (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
621 (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
622 (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
623 (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
624 (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
625 corelow.o from gdb_target_obs.
626 * corefile.c (core_target): Update the comment on NULL value.
627 (core_file_command): Replace error by gdb_assert on CORE_TARGET.
628 * corelow.c (sniff_core_bfd): Call error instead of warning on zero
629 MATCHES. Drop YUMMY set on NULL.
630 (core_close): Do not call exit_inferior_silent on zero PID. Do not
631 reclaim CORE_DATA if it is already NULL.
633 2012-01-09 Doug Evans <dje@google.com>
635 * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
636 * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
638 2012-01-09 Keith Seitz <keiths@redhat.com>
640 * breakpoint.c (wrapper.h): Don't include.
642 2012-01-09 Keith Seitz <keiths@redhat.com>
644 * Makefile.in (SFILES): Remove wrapper.c.
645 (HFILES_NO_SRCDIR): Remove wrapper.h.
646 (COMMON_OBS): Remove wrapper.o.
647 * cli/cli-interp.c: Don't inlude wrapper.h.
648 * corelow.c: Likewise.
649 (core_open): Replace gdb_target_find_new_threads with
650 TRY_CATCH around target_find_new_threads.
651 * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
652 * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
653 * varobj.c (varobj_create): Likewise for parse_exp_1 and
655 (varobj_set_value): Likewise for evaluate_expression and
657 (install_new_variable): Likewise for value_fetch_lazy.
658 (adjust_value_for_child_access): Likewise for value_ind.
659 (c_describe_child): Likewise for value_subscript and
661 (c_value_of_root): Likewise for evaluate_expression.
665 2012-01-09 Doug Evans <dje@google.com>
667 * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
668 partial_read_comp_unit_head. Replace "buffer", "buffer_size" and
669 "abfd" args with "section". All callers updated.
670 Error checking code moved ...
671 (error_check_comp_unit_head): ... here. New function.
672 (read_and_check_type_unit_head): Renamed from read_type_unit_head.
673 Delete arg "abfd". New arg "type_offset". All callers updated.
674 (create_debug_types_hash_table): Simplify by using
675 read_and_check_type_unit_head.
677 * parser-defs.h (namecopy): Delete.
678 * parse.c (namecopy, namecopy_size): Move into copy_name.
680 2012-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
682 Partially fix duplicate .o files after omitting libbfd.a.
683 * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
684 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
685 * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
686 * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
687 * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
688 * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
689 * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
691 2012-01-09 Pedro Alves <palves@redhat.com>
693 * MAINTAINERS: Update my email address.
695 2012-01-08 Doug Evans <dje@google.com>
697 * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
698 n_type_units. Rename type_comp_units to all_type_units.
700 (add_signatured_type_cu_to_table): Renamed from
701 add_signatured_type_cu_to_list. All callers updated.
703 * gdbtypes.h (struct cplus_struct_type): Delete member
704 nfn_fields_total. All uses removed.
706 2012-01-06 Doug Evans <dje@google.com>
708 * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
710 (dwarf2_find_comp_unit): Delete.
711 (process_psymtab_comp_unit): Make result "void".
712 Delete args buffer, info_ptr, buffer_size, and replace with
713 "section". All callers updated.
714 (dwarf2_build_psymtabs_hard): Simplify.
716 2012-01-06 Sergio Durigan Junior <sergiodj@redhat.com>
717 Thiago Jung Bauermann <bauerman@br.ibm.com>
719 * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
720 before `struct gdb_exception'.
721 * breakpoint.c (update_global_location_list_nothrow)
722 (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
723 * cp-abi.c (value_rtti_type): Likewise.
724 * cp-support.c (cp_validate_operator): Likewise.
725 * infrun.c (insert_exception_resume_breakpoint)
726 (check_exception_resume, keep_going): Likewise.
727 * mi-interp.c (mi_breakpoint_created)
728 (mi_breakpoint_modified): Likewise.
729 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
730 * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
731 (ia64_hpux_handle_dld_breakpoint_1): Likewise.
733 2012-01-05 Doug Evans <dje@google.com>
735 * dwarf2read.c (statement_prologue): Delete, unused.
737 * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
738 * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
740 * dwarf2read.c (comp_unit_header): Delete, unused.
742 2012-01-05 Ulrich Weigand <uweigand@de.ibm.com>
744 * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
745 * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
747 2012-01-05 Khoo Yit Phang <khooyp@cs.umd.edu>
749 * infrun.c (normal_stop): Don't skip calling the normal_stop
750 observers if the thread was doing a multi-step, but stopped for
751 some reason other than stepping.
753 2012-01-05 Pedro Alves <alves.ped@gmail.com>
755 * cli/cli-decode.h: Add comments.
756 (CMD_LIST_AMBIGUOUS): Moved to command.h
757 (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
758 (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
759 (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
760 (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
761 (add_com, add_com_alias, add_info, add_info_alias)
762 (complete_on_cmdlist, complete_on_enum, help_list): Remove
764 * command.h: Add and adjust comments.
765 (CMD_LIST_AMBIGUOUS): Moved here.
766 (help_cmd, help_cmd_list): Delete declarations.
768 2012-01-04 Doug Evans <dje@google.com>
770 * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
772 (load_full_type_unit): Renamed from read_signatured_type_at_offset.
773 Replace all arguments with "per_cu". All callers updated.
775 * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
777 * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
778 New arg "per_cu". All callers updated.
780 Delete #if 0'd out code.
781 * language.c (binop_result_type): Delete.
782 (simple_type, ordered_type, same_type, integral_type): Delete.
783 (numeric_type, character_type, string_type, boolean_type): Delete.
784 (float_type, structured_type): Delete.
785 * language.h: Update.
787 2012-01-04 Tom Tromey <tromey@redhat.com>
789 * python/py-value.c (valpy_binop): Initialize 'res_val'.
791 2012-01-04 Joel Brobecker <brobecker@adacore.com>
793 * corefile.c (close_exec_file): Delete.
794 (reopen_exec_file): Remove commented out code that seems related
795 to close_exec_file, which is being deleted here.
796 * inferior.h (close_exec_file): Delete.
797 * fork-child.c (fork_inferior): Remove call to fork_inferior.
799 2012-01-04 Joel Brobecker <brobecker@adacore.com>
801 * ada-lang.c: #include "cli/cli-utils.h".
802 (get_selections): Use skip_spaces.
803 (ada_get_next_arg): Use skip_spaces and skip_to_space.
804 (catch_ada_exception_command_split): Use skip_spaces.
805 (ada_decode_assert_location): Likewise.
807 2012-01-04 Joel Brobecker <brobecker@adacore.com>
809 * linespec.c (decode_line_internal): Check for C++ or Java
810 compound constructs only if the current language is C, C++
813 2012-01-04 Jan Kratochvil <jan.kratochvil@redhat.com>
816 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
817 Joel Brobecker <brobecker@adacore.com>
818 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
819 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
821 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
822 fall through into AT_ENTRY_POINT.
823 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
825 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
826 PPC_INSN_SIZE skip to 3 times.
828 2012-01-04 Joel Brobecker <brobecker@adacore.com>
830 * linespec.c (add_minsym): Preserve function descriptors.
832 2012-01-04 Ulrich Weigand <uweigand@de.ibm.com>
834 * breakpoint.c (all_locations_are_pending): Consider locations
835 in program spaces executing during startup pending as well.
837 2012-01-04 Joel Brobecker <brobecker@adacore.com>
839 Copyright year update in most files of the GDB Project.
841 2012-01-04 Joel Brobecker <brobecker@adacore.com>
843 * copyright.sh: Delete.
844 * copyright.py: Rewrite.
846 2012-01-04 Joel Brobecker <brobecker@adacore.com>
848 * gnulib/extra/update-copyright: New file, imported from gnulib.
850 2012-01-04 Joel Brobecker <brobecker@adacore.com>
852 * README (Copyright and License Notices): New section.
854 2012-01-03 Tom Tromey <tromey@redhat.com>
857 * python/py-value.c (valpy_dereference, valpy_get_address
858 valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
859 (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
860 (valpy_absolute, valpy_richcompare): Free intermediate values.
862 2011-01-03 Joel Brobecker <brobecker@adacore.com>
864 * ada-lang.c: Reformat the copyright notice.
866 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
868 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
869 * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
870 (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
871 (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
873 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
874 Build gdb directly from *.o files not using libgdb.a.
875 * Makefile.in (COMMON_OBS): Remove solib-target.o.
877 2012-01-02 Joel Brobecker <brobecker@adacore.com>
879 * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
880 gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
881 Reformat the copyright header.
883 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
886 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
887 Remove the gdbtui binary.
888 * gdb.c (main): Remove args.interpreter_p initialization.
889 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
890 * main.h (struct captured_main_args): Remove interpreter_p.
892 2012-01-02 Joel Brobecker <brobecker@adacore.com>
894 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
896 2012-01-02 Joel Brobecker <brobecker@adacore.com>
898 * top.c (print_gdb_version): Update copyright year.
900 2012-01-02 Yao Qi <yao@codesourcery.com>
902 * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
904 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
905 Joel Brobecker <brobecker@adacore.com>
907 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
908 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
910 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
911 fall through into AT_ENTRY_POINT.
912 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
914 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
915 PPC_INSN_SIZE skip to 3 times.
917 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
919 * amd64-linux-nat.c (update_debug_registers_callback): New comment on
921 * i386-linux-nat.c (update_debug_registers_callback): Likewise.
923 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
925 Build gdb directly from *.o files not using libgdb.a.
926 * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
927 (COMMON_OBS): Remove solib-target.o.
928 (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
929 (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
930 (LIBGDB_OBS, libgdb.a): Move it above.
931 * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
932 (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
933 (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
934 (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
935 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
936 (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
937 (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
938 (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
939 (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
940 (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
941 (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
942 (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
943 (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
944 (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
945 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
946 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
947 (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
948 (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
949 (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
950 (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
951 (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
952 (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
953 (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
954 (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
955 (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
956 (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
957 (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
959 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
961 Remove the gdbtui binary.
962 * .gitignore (/gdbtui): Remove.
963 * Makefile.in (TUI): Remove.
964 (SUBDIR_TUI_OBS): Remove tui-main.o.
965 (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
966 (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
967 (tui-main.o): Remove.
968 (all_object_files): Remove tui-main.o.
969 * NEWS: New note for the gdbtui removal.
970 * configure: Rebuilt.
971 * configure.ac: No longer add all-tui, clean-tui, install-tui and
972 uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
973 CONFIG_UNINSTALL respectively.
974 * gdb.c (main): Remove args.interpreter_p initialization.
975 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
976 * main.h (struct captured_main_args): Remove interpreter_p.
977 * tui/tui-main.c: Remove.
979 2012-01-01 Doug Evans <dje@google.com>
981 * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
982 (dwarf2_physname, read_import_statement): Ditto.
983 (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
984 (process_structure_scope read_subroutine_type): Ditto.
985 (read_typedef, load_partial_dies, read_partial_die): Ditto.
986 (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
987 (dwarf2_fetch_die_location_block): Ditto.
988 (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
990 * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
992 (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
993 (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
994 (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
996 * dwarf2read.c (load_cu): Move assert to more useful location.
998 * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
1001 * dwarf2read.c (dwarf2_per_objfile): Add comment.
1002 (dwarf2_elf_names): Minor reformat.
1003 (dwarf2_per_cu_data): Tweak comment.
1004 (dwarf2_read_section): Fix comment.
1005 (create_all_comp_units): Fix comment.
1006 (load_full_comp_unit): Fix comment.
1007 (process_full_comp_unit): Fix comment.
1008 (read_signatured_type): Fix comment.
1010 For older changes see ChangeLog-2011.
1016 version-control: never