* dwarf2read.c (guess_structure_name): Allocate name on the
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index 4c3ff5c7fd849e759415cf397de88f6fd19f9b99..308f7302484a042fd83539b7fe09c4948dbc2539 100644 (file)
@@ -1,3 +1,146 @@
+2010-02-15  Tom Tromey  <tromey@redhat.com>
+
+       * dwarf2read.c (guess_structure_name): Allocate name on the
+       objfile obstack.
+
+2010-02-15  Tom Tromey  <tromey@redhat.com>
+
+       * c-typeprint.c (c_type_print_base): Reverse order of test.
+
+2010-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * solib-svr4.c (LM_ADDR_CHECK): New variable minpagesize.  Optionally
+       initialize it from ELF BFD.  Extend the prelink condition by it.
+
+2010-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * defs.h (parse_pid_to_attach): New.
+       * utils.c (parse_pid_to_attach): New.
+       * darwin-nat.c (darwin_attach): Replace ARGS parsing by parse_pid.
+       * gnu-nat.c (gnu_attach): Likewise.
+       * nto-procfs.c (procfs_attach): Likewise.
+       * procfs.c (procfs_attach): Likewise.
+       * windows-nat.c (windows_attach): Likewise.
+       * inf-ptrace.c (inf_ptrace_attach): Likewise.  Remove variable dummy.
+       * inf-ttrace.c (inf_ttrace_attach): Likewise.
+       * remote.c (extended_remote_attach_1): Likewise.  New comment on getpid
+       check.
+
+2010-02-14  Masaki Muranaka  <monaka@monami-software.com>
+
+       * MAINTAINERS: Add myself for write after approval privileges.
+
+2010-02-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * solib-svr4.c: (LM_ADDR_CHECK): Move variable align to a more inner
+       block.
+
+2010-02-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * solib-svr4.c: (LM_ADDR_CHECK): Print successful prelink adjustment
+       only if INFO_VERBOSE.
+
+2010-02-12  Tomas Holmberg <th@virtutech.com>
+
+       * mi/mi-main.c: Added the --reverse flag to the following MI
+       commands: exec-continue, exec-finish, exec-next, exec-step,
+       exec-next-instruction, exec-step-instruction. This is to
+       support reverse execution over the MI interface to gdb.
+
+2010-02-12  Pedro Alves  <pedro@codesourcery.com>
+
+       * tracepoint.c (_initialize_tracepoint): Specify that the address
+       range of `tfind outsize' is exclusive, and that the address range
+       of `tfind range' is inclusive, in the commands' help strings.
+
+2010-02-12  Joel Brobecker  <brobecker@adacore.com>
+
+       Spurious "dll not found" error messages on x64-windows.
+       * windows-nat.c: Add include of complaints.h.
+       (handle_unload_dll): Change dll-not-found error into a complaint.
+
+2010-02-12  Pedro Alves  <pedro@codesourcery.com>
+
+       * breakpoint.c (allocate_bp_location): Use bp_loc_other for
+       bp_tracepoint and bp_fast_tracepoint, not
+       bp_loc_software_breakpoint.
+       (update_global_location_list): Tracepoints are never duplicates of
+       anything.
+
+2010-02-12  Pedro Alves  <pedro@codesourcery.com>
+
+       * breakpoint.c (break_command_really): Change return type to int.
+       Return false if no breakpoint was created, true otherwise.
+       (trace_command): Don't set the tracepoint count if no tracepoint
+       was created.
+       (ftrace_command): Ditto.
+       (create_tracepoint_from_upload): Bail out if the tracepoint wasn't
+       created in the breakpoints table.
+
+2010-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
+           Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * solib-svr4.c (LM_ADDR_CHECK): New comment on PPC-aware condition.
+
+2010-02-11  Pedro Alves  <pedro@codesourcery.com>
+
+       * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if
+       the offset value isn't of integral type.
+
+2010-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * breakpoint.c (delete_breakpoint) <bpt->related_breakpoint != NULL>:
+       New.
+
+2010-02-11  Pedro Alves  <pedro@codesourcery.com>
+
+       * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out on
+       non-subscriptable types.
+       * valarith.c (binop_types_user_defined_p): New, abstracted out
+       from ...
+       (binop_user_defined_p): ... this.
+       * value.h (binop_types_user_defined_p): Declare.
+
+2010-02-11  Pedro Alves  <pedro@codesourcery.com>
+
+       * tracepoint.c (tfile_open): Remove spurious discard_cleanups.
+       Merge uploaded TSVs before merging uploaded tracepoints.
+
+2010-02-11  Pedro Alves  <pedro@codesourcery.com>
+
+       * ax-gdb.c (gen_deref): Don't allow dereferencing void pointers.
+
+2010-02-11  Vladimir Prus  <vladimir@codesourcery.com>
+
+       * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Add extra
+       whitespace character after a dot in comment.
+       (mi_cmd_stack_list_arguments, mi_cmd_stack_list_variables):
+       Likewise.
+       (list_args_or_locals): For the 'all' (that is
+       -stack-list-variables) case, always output list of tuples.
+       Output 'arg' field if variable is argument.
+
+2010-02-10  Tom Tromey  <tromey@redhat.com>
+
+       * parser-defs.h (parser_debug): Declare.
+       * parse.c (_initialize_parse): Install "debug parser" set/show
+       command.
+       (parser_debug): New global.
+       (show_parserdebug): New function.
+       * c-exp.y (c_parse): Set yydebug.
+
+2010-02-10  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * target-descriptions.c (tdesc_type): Add TDESC_TYPE_I387_EXT,
+       TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
+       (tdesc_predefined_types): Add i387_ext, i386_eflags and
+       i386_mxcsr.
+       (tdesc_find_type): New.
+       (tdesc_gdb_type): Use tdesc_find_type.  Handle TDESC_TYPE_I387_EXT,
+       TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
+
+       * target-descriptions.h (tdesc_find_type): New.
+
 2010-02-10  Michael Snyder  <msnyder@vmware.com>
 
        * gdb-gdb.py: Comment fix.
This page took 0.024617 seconds and 4 git commands to generate.