gdb: xtensa: fix on 64-bit hosts
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index 3e7f1492a0ecd2cbbb5f15c500937f4629e287ef..10aaefe6a18b75c91091b76151501041573cdcc4 100644 (file)
@@ -1,3 +1,159 @@
+2014-01-22  Baruch Siach  <baruch@tkos.co.il>
+
+       * xtensa-tdep.h (xtensa_elf_greg_t): Change type to uint32_t.
+
+2014-01-22  Pedro Alves  <palves@redhat.com>
+
+       * xtensa-config.c: Include defs.h.
+
+2014-01-22  Joel Brobecker  <brobecker@adacore.com>
+
+       * common/common-utils.h: Add "ARI:" comment beside __func__
+       reference.
+
+2014-01-22  Joel Brobecker  <brobecker@adacore.com>
+
+       * common/common-utils.h (FUNCTION_NAME): Expand the macro's
+       documentation a bit.
+
+2014-01-21  Roland McGrath  <mcgrathr@google.com>
+
+       * configure.ac: Call AM_PROG_INSTALL_STRIP.
+       * configure: Regenerate.
+       * aclocal.m4: Regenerate.
+       * Makefile.in (install_sh, INSTALL_STRIP_PROGRAM, STRIP):
+       New substituted variables.
+       (install-strip): New target.
+       (INSTALL_SCRIPT): New substituted variable.
+       (FLAGS_TO_PASS): Add it.
+       (install-only): Use $(INSTALL_SCRIPT) rather than
+       $(INSTALL_PROGRAM) for gcore.
+
+2014-01-20  Tom Tromey  <tromey@redhat.com>
+
+       * cli/cli-decode.h (struct cmd_list_element): Move all bitfields
+       together.
+
+2014-01-20  Tom Tromey  <tromey@redhat.com>
+
+       * cli/cli-decode.c (add_cmd, deprecate_cmd, add_alias_cmd)
+       (add_setshow_cmd_full, delete_cmd, lookup_cmd_1)
+       (deprecated_cmd_warning, complete_on_cmdlist): Update.
+       * cli/cli-decode.h (CMD_DEPRECATED, DEPRECATED_WARN_USER)
+       (MALLOCED_REPLACEMENT, DOC_ALLOCATED): Remove.
+       (struct cmd_list_element) <flags>: Remove.
+       <cmd_deprecated, deprecated_warn_user, malloced_replacement,
+       doc_allocated>: New fields.
+       <hook_in, allow_unknown, abbrev_flag, type, var_type>: Now
+       bitfields.
+       * maint.c (maintenance_do_deprecate): Update.
+       * top.c (execute_command): Update.
+
+2014-01-20  Baruch Siach  <baruch@tkos.co.il>
+
+       * xtensa-linux-nat.c: Include asm/ptrace.h.
+
+2014-01-17  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       * Makefile.in (SFILES): Add d-support.c.
+       (COMMON_OBS): Add d-support.o.
+       * d-lang.h (d_parse_symbol): Add comment, now defined in
+       d-support.c.
+       * d-lang.c (parse_call_convention)
+       (parse_attributes, parse_function_types)
+       (parse_function_args, parse_type, parse_identifier)
+       (call_convention_p, d_parse_symbol): Move functions to ...
+       * d-support.c: ... New file.
+
+2014-01-17  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       * d-lang.h (d_parse_symbol): Add declaration.
+       * d-lang.c (extract_identifiers)
+       (extract_type_info): Remove functions.
+       (parse_call_convention, parse_attributes)
+       (parse_function_types, parse_function_args)
+       (parse_type, parse_identifier, call_convention_p)
+       (d_parse_symbol): New functions.
+       (d_demangle): Use d_parse_symbol to demangle D symbols.
+
+2014-01-17  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       * d-lang.h (struct builtin_d_type): New data type.
+       (builtin_d_type): Add declaration.
+       * d-lang.c (d_language_arch_info, build_d_types)
+       (builtin_d_type): New functions.
+       (enum d_primitive_types): New data type.
+       (d_language_defn): Change c_language_arch_info to
+       d_language_arch_info.
+       (d_type_data): New static variable.
+       (_initialize_d_language): Initialize d_type_data.
+
+2014-01-17  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       * d-lang.h (d_main_name): Add declaration.
+       * d-lang.c (d_main_name): New function.
+       * symtab.c (find_main_name): Add call to d_main_name.
+
+2014-01-17  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       * d-lang.c (d_language_defn): Change macro_expansion_c to
+       macro_expansion_no.
+
+2014-01-17  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       * MAINTAINERS: Add myself as a write-after-approval maintainer.
+
+2014-01-17  Sergio Durigan Junior  <sergiodj@redhat.com>
+
+       * breakpoint.c (insert_bp_location): Add "volatile" keyword to "struct
+       gdb_exception" declaration.
+       * remote.c (getpkt_or_notif_sane): Likewise.
+
+2014-01-17  Doug Evans  <dje@google.com>
+
+       * common/gdb_vecs.c (delim_string_to_char_ptr_vec_append): New
+       function, contents of dirnames_to_char_ptr_vec_append moved here.
+       (delim_string_to_char_ptr_vec): New function.
+       (dirnames_to_char_ptr_vec_append): Rewrite.
+       * common/gdb_vecs.h (delim_string_to_char_ptr_vec): Declare.
+
+2014-01-17  Doug Evans  <dje@google.com>
+
+       * common/common-utils.h (FUNCTION_NAME): Renamed from ASSERT_FUNCTION,
+       and moved here ...
+       * common/gdb_assert.h (ASSERT_FUNCTION): ... from here.
+       #include "common-utils.h".
+       (gdb_assert, gdb_assert_fail, gdb_assert_not_reached): Update.
+       * common/vec.h (VEC_ASSERT_PASS): Update.
+       * darwin-nat.h: Replace #include of gdb_assert.h with common-utils.h.
+       (MACH_CHECK_ERROR): Update.
+
+2014-01-17  Simon Marchi  <simon.marchi@ericsson.com>
+
+       * gdbarch.sh (gdbarch_address_class_name_to_type_flags): Add
+       comments.
+       * gdbarch.h: Regenerate.
+
+2014-01-16  Tom Tromey  <tromey@redhat.com>
+
+       * value.c (struct value) <regnum>: Move earlier.
+
+2014-01-16  Tom Tromey  <tromey@redhat.com>
+
+       * remote.c (extended_remote_create_inferior): Rename from
+       extended_remote_create_inferior_1.  Add "ops" argument.  Remove
+       old implementation.
+
+2014-01-16  Pedro Alves  <palves@redhat.com>
+
+       * s390-linux-tdep.c (s390_frame_unwind_cache): Swallow
+       NOT_AVAILABLE_ERROR errors while parsing the prologue or reading
+       the backchain.
+
+2014-01-16  Doug Evans  <dje@google.com>
+
+       * dwarf2read.c (open_and_init_dwp_file): Fix typo in comment.
+
 2014-01-16  Markus Metzger  <markus.t.metzger@intel.com>
 
        * btrace.h (btrace_thread_flag): New.
This page took 0.034145 seconds and 4 git commands to generate.