aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2001-03-20Use `relax_marker' instead of fragile address test code to determineAlan Modra3-39/+30
whether a frag's fr_address has been updated.
2001-03-20Conditionally include nlist.h in solib-legacy.c for older *BSD systems.Kevin Buettner5-2/+18
2001-03-20Fix ``make'' problems when building cross debugger.Kevin Buettner2-3/+14
2001-03-20Fix 2 bugs with parsing the resource dependency tables.Jim Wilson3-396/+437
* ia64-gen.c (fetch_insn_class): If xsect, then ignore comment and notestr if larger than xsect. (in_class): Handle format M5. * ia64-asmtab.c: Regnerate.
2001-03-20malloc() -> xmalloc.Andrew Cagney10-36/+34
Move malloc() decl to utils.c
2001-03-20Move realoc() decl to utils.c. s/realloc()/xrealloc()/.Andrew Cagney7-12/+19
2001-03-20Move free() decl to utils.c.Andrew Cagney4-7/+14
2001-03-20Add proc-service.o to NATDEPFILES.Kevin Buettner2-1/+7
2001-03-19Zap __STDC__ references.Andrew Cagney6-14/+11
2001-03-19* TODO: List known problems with TUI.Andrew Cagney2-1/+104
2001-03-19Jimmy Guo stepping down.Andrew Cagney2-3/+14
2001-03-19* remote.c (remote_cisco_section_offsets): Do not cast result fromAndrew Cagney2-4/+11
bfd_get_section_name. (compare_sections_command): Ditto. (remote_cisco_section_offsets): Make ``p'' a const pointer. (compare_sections_command): Ditto for ``sectname''.
2001-03-19* valops.c (hand_function_call): Simplify computation of theAndrew Cagney2-12/+11
address of the pushed argument.
2001-03-19* p-exp.y (parse_number): Avoid shift overflow when ``long''.Andrew Cagney2-7/+11
Code copied from c-exp.y.
2001-03-19Document a native system printing output outside of the MI as a knownAndrew Cagney2-1/+16
bug.
2001-03-19Don't try to read past end of info buffer, and correct test results.Alan Modra4-3/+23
2001-03-19Fix register name printed in warning message.Alan Modra4-3/+18
2001-03-19 * gas/m68k/pcrel.s: Force alignment to 8 byte boundary to getAndreas Schwab3-2/+9
consistent output across targets. * gas/m68k/pcrel.d: Adjusted.
2001-03-19Fix solib support so that non-svr4-solib-host x svr4-solib-target will work.Kevin Buettner1-0/+23
2001-03-19Fix solib support so that non-svr4-solib-host x svr4-solib-target will work.Kevin Buettner5-154/+351
2001-03-19Fix NetBSD 1.4 build problem.Kevin Buettner2-2/+14
2001-03-182001-03-17 Michael Chastain <chastain@redhat.com>Michael Chastain3-2/+9
* win32-nat.c (child_attach): check args for NULL before passing to strtoul. This fixes PR gdb/43.
2001-03-182001-03-18 H.J. Lu <hjl@gnu.org>H.J. Lu6-41/+81
* gas/i386/intel.s: Move PIC code to ... * gas/i386/intelpic.s: New. Here. * gas/i386/intel.d: Updated. * gas/i386/intelpic.d: New. * gas/i386/i386.exp: Check PIC code in Intel syntax for ELF targets only.
2001-03-18 * gas/mri/mri.exp: Fix test of m6811/m6812 targets.Stephane Carrez2-1/+5
2001-03-18 * config/tc-m68hc11.c (md_pseudo_table): Recognize xrefb to complyStephane Carrez2-0/+8
with 'Motorola specification for assembly language input standard'.
2001-03-18Fix a typo.H.J. Lu1-1/+1
2001-03-17* i387-nat.h: Doc Fix.Mark Kettenis2-1/+3
2001-03-17* i386-tdep.c: Fix formatting.Mark Kettenis2-220/+214
(i386_get_frame_setup, i386_follow_jump, codestream_read, codestream_seek, codestream_fill, skip_trampoline_code, gdb_print_insn_i386, _initialize_i386_tdep): Remove redundant prototypoes.
2001-03-17* config/i386/tm-linux.h (TARGET_ANALYZE_FLOATING): Remove. It'sMark Kettenis2-29/+6
no longer used. Also remove associated FIXME.
2001-03-17 * emultempl/elf32.em (OPTION_GROUP): New macro.Ulrich Drepper4-45/+90
Add new option Bgroup to longopts. (gld*_parse_args): Handle GROUP_OPTION and recognize -z defs. (gld*_list_options): Add -Bgroup and -z defs. * ld.1: Document -Bgroup and -z defs. * ld.texinfo: Likewise.
2001-03-17 * dwarf2dbg.c (user_filenum, user_filenum_allocated): Remove.Richard Henderson2-19/+39
(dwarf2_directive_loc): Don't use them. (dwarf2_directive_file): Reject duplicate file definitions. (get_filenum): Zero allocated memory. (out_file_list): Complain about missing file definitions.
2001-03-17Teach .org to handle complex expressionsAlan Modra3-4/+30
2001-03-17Add support for m/M methods - pure multi-arch. These do not haveAndrew Cagney2-25/+99
macros and take a gdbarch parameter.
2001-03-16* config/h8300/tm-h8300.h (FRAME_ARGS_ADDRESS): Changed to useJ.T. Conklin3-9/+34
h8300_frame_args_address from frame_args_address. (FRAME_LOCALS_ADDRESS): Changed to use h8300_frame_locals_address from frame_locals_address. (PRINT_REGISTER_HOOK): Changed to use h8300_print_register_hook from print_register_hook. (h8300_frame_args_address): Declare. (h8300_frame_find_saved_regs): Declare. (h8300_frame_locals_address): Declare. (h8300_frame_saved_pc): Declare. (h8300_pop_frame): Declare. (h8300_print_register_hook): Declare. * h8300-tdep.c (h8300_frame_find_saved_regs): Removed declaration. (h8300_frame_args_address): Renamed from frame_args_address. (h8300_frame_locals_address): Renamed from frame_locals_address. (h8300_pop_frame): Renamed from pop_frame. (h8300_print_register_hook): Renamed from print_register_hook. -------------------------------------------------------------------
2001-03-162001-03-12 Michael Chastain <chastain@redhat.com>Michael Chastain2-20/+11
* gdb.c++/derivation.exp: Use the 'runto' library function.
2001-03-162001-03-12 Michael Chastain <chastain@redhat.com>Michael Chastain2-2/+6
* gdb.c++/annota2.exp: Fix regular expression for "post-query".
2001-03-16Fix syntax errors.Nick Clifton2-4/+9
2001-03-16Add new opcodesNick Clifton3-497/+536
2001-03-16Change type of ``storage_needed'' from unsigned int to long.Kevin Buettner3-6/+12
2001-03-162001-02-24 Michael Chastain <chastain@redhat.com>Michael Chastain2-77/+39
* gdb.c++/ref-types.exp: Change handwritten code to library function 'runto'.
2001-03-16Fix warning messageNick Clifton2-4/+8
2001-03-162001-03-16 Orjan Friberg <orjanf@axis.com>Orjan Friberg1-0/+4
* gdb.base/signals.exp: Set count to 0 explicitly.
2001-03-162001-03-16 Orjan Friberg <orjanf@axis.com>Orjan Friberg1-0/+3
* gdb.base/signals.exp: Set count to 0 explicitly.
2001-03-16Add local tag support. Don't flush instructions for .xdata directives.Jim Wilson2-4/+56
* config/tc-ia64.c (md): New member keep_pending_output. (ia64_flush_pending_output): Flush only if md.keep_pending_output is not set. (dot_xdata): Turn on md.keep_pending_output for the duration of this function. (dot_xfloat_cons): Ditto. (dot_xstringer): Ditto. (dot_xdata_ua): Ditto. (dot_xfloat_cons_ua): Ditto. * config/tc-ia64.c (ia64_unrecognized_line, case '['): Add local label support.
2001-03-16Misc. cleanups.Kevin Buettner2-16/+24
2001-03-16* tweakFrank Ch. Eigler2-3/+8
2001-03-15 Frank Ch. Eigler <fche@redhat.com> * sim-core.c (sim_core_map_attach): Correct overlap-related error messages.
2001-03-16Fix accidental loss of bit 7 in peoples namesHans-Peter Nilsson1-2/+2
2001-03-16* config/tc-sh.c (parse_reg): Match capital MACH and MACL.Alexandre Oliva2-2/+6
2001-03-15merge from gccDJ Delorie1-1/+1
2001-03-15*** empty log message ***Mark Salter1-0/+2