summaryrefslogtreecommitdiff
path: root/gdb/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r--gdb/ChangeLog86
1 files changed, 86 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index b5aeda17f02..a2c457ef949 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,89 @@
+2012-10-15 H.J. Lu <hongjiu.lu@intel.com>
+
+ PR backtrace/14646
+ PR gdb/14647
+ * i386-tdep.h (gdbarch_tdep): Remove sp_regnum_from_eax and
+ pc_regnum_from_eax.
+ * i386-tdep.c (i386_gdbarch_init): Don't use sp_regnum_from_eax
+ nor pc_regnum_from_eax.
+ * amd64-tdep.c (amd64_x32_init_abi): Don't set sp_regnum_from_eax
+ nor pc_regnum_from_eax.
+
+2012-10-15 Jan Kratochvil <jan.kratochvil@redhat.com>
+
+ Fix entry values resolving in inlined frames.
+ * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Move func_addr,
+ gdbarch and caller_frame initialization later. Skip INLINE_FRAME
+ entries of FRAME.
+
+2012-10-15 Joel Brobecker <brobecker@adacore.com>
+
+ * configure.ac: Build with -DMS_WIN64 if building with Python
+ enabled using GCC on amd64-windows.
+ * configure: Regenerate.
+
+2012-10-15 Tom Tromey <tromey@redhat.com>
+
+ PR python/14635:
+ * python/py-symtab.c (del_objfile_sal): Set 'symtab' field
+ to Py_None.
+
+2012-10-15 Tom Tromey <tromey@redhat.com>
+
+ PR python/14634:
+ * python/py-symbol.c (sympy_dealloc): Check for NULL symbol.
+
+2012-10-11 Andrew Burgess <aburgess@broadcom.com>
+
+ * remote-sim.c (gdbsim_create_inferior): Call init_thread_list to
+ reset thread numbering back to 1.
+
+2012-10-11 Doug Evans <dje@google.com>
+
+ PR breakpoints/14643.
+ * linespec.c (struct ls_parser): New member keyword_ok.
+ (linespec_lexer_lex_string): Add comment.
+ (linespec_lexer_lex_one): Ignore keywords if it's the wrong place
+ for one.
+ (parse_linespec): Set keyword_ok.
+
+2012-10-10 Doug Evans <dje@google.com>
+
+ * dwarf2read.c (process_psymtab_comp_unit_reader): Remove duplicate
+ "0x" prefix on address in log message.
+
+ * dwarf2read.c (read_1_byte): Add const to buf parameter.
+ (read_1_signed_byte, read_2_bytes, read_2_signed_bytes): Ditto.
+ (read_4_bytes, read_4_signed_bytes, read_8_bytes): Ditto.
+ (lookup_dwo_file): Add const to dwo_name parameter.
+ (lookup_dwo_comp_unit, lookup_dwo_type_unit): Ditto.
+
+2012-10-06 Jan Kratochvil <jan.kratochvil@redhat.com>
+
+ Fix crash during stepping on ppc32.
+ * ppc-linux-tdep.c (powerpc_linux_in_dynsym_resolve_code): Test NULL
+ SYM.
+
+2012-10-03 Doug Evans <dje@google.com>
+
+ PR symtab/14601
+ * buildsym.c (buildsym_init): Reset using_directives to NULL.
+
+2012-10-02 Andrew Burgess <aburgess@broadcom.com>
+
+ * remote-sim.c (dump_mem): Always dump buffer contents, zero fill
+ output and use uint32_t not long to ensure 4 byte size.
+
+2012-10-02 Joel Brobecker <brobecker@adacore.com>
+
+ * rs6000-nat.c (add_vmap): Set "last" to "next" after having
+ unref'ed it.
+
+2012-10-01 Andrew Burgess <aburgess@broadcom.com>
+
+ * target.c (simple_search_memory): Include access length in
+ warning message.
+
2012-09-28 Nathan Miller <nathanm2@us.ibm.com>
Edjunior Machado <emachado@linux.vnet.ibm.com>