deliverable/binutils-gdb.git
17 years ago * Makefile.in (install-info, install-dvi, install-ps, install-pdf):
Daniel Jacobowitz [Wed, 7 Jun 2006 15:43:36 +0000 (15:43 +0000)] 
* Makefile.in (install-info, install-dvi, install-ps, install-pdf):
New dummy targets.

17 years agobfd/doc:
Joseph Myers [Wed, 7 Jun 2006 15:38:01 +0000 (15:38 +0000)] 
bfd/doc:
* bfd.texinfo: Remove local @tex code.

bfd:
* po/Make-in (pdf, ps): New dummy targets.

binutils:
* po/Make-in (pdf, ps): New dummy targets.

gas:
* po/Make-in (pdf, ps): New dummy targets.

gprof:
* po/Make-in (pdf, ps): New dummy targets.

ld:
* po/Make-in (pdf, ps): New dummy targets.

opcodes:
* po/Make-in (pdf, ps): New dummy targets.

17 years ago * config/tc-arm.c (stdarg.h): include.
Julian Brown [Wed, 7 Jun 2006 14:32:28 +0000 (14:32 +0000)] 
* config/tc-arm.c (stdarg.h): include.
(arm_it): Add uncond_value field. Add isvec and issingle to operand
array.
(arm_reg_type): Add REG_TYPE_VFSD (single or double VFP reg) and
REG_TYPE_NSDQ (single, double or quad vector reg).
(reg_expected_msgs): Update.
(BAD_FPU): Add macro for unsupported FPU instruction error.
(parse_neon_type): Support 'd' as an alias for .f64.
(parse_typed_reg_or_scalar): Support REG_TYPE_VFSD, REG_TYPE_NSDQ
sets of registers.
(parse_vfp_reg_list): Don't update first arg on error.
(parse_neon_mov): Support extra syntax for VFP moves.
(operand_parse_code): Add OP_RVSD, OP_RNSDQ, OP_VRSDLST, OP_RVSD_IO,
OP_RNSDQ_RNSC, OP_RVC_PSR, OP_APSR_RR, OP_oRNSDQ.
(parse_operands): Support isvec, issingle operands fields, new parse
codes above.
(do_vfp_nsyn_mrs, do_vfp_nsyn_msr): New functions. Support VFP mrs,
msr variants.
(do_mrs, do_msr, do_t_mrs, do_t_msr): Add support for above.
(NEON_ENC_TAB): Add vnmul, vnmla, vnmls, vcmp, vcmpz, vcmpe, vcmpez.
(NEON_ENC_SINGLE, NEON_ENC_DOUBLE): Define macros.
(NEON_SHAPE_DEF): New macro. Define table of possible instruction
shapes.
(neon_shape): Redefine in terms of above.
(neon_shape_class): New enumeration, table of shape classes.
(neon_shape_el): New enumeration. One element of a shape.
(neon_shape_el_size): Register widths of above, where appropriate.
(neon_shape_info): New struct. Info for shape table.
(neon_shape_tab): New array.
(neon_type_mask): Add N_F64, N_VFP. Update N_MAX_NONSPECIAL.
(neon_check_shape): Rewrite as...
(neon_select_shape): New function to classify instruction shapes,
driven by new table neon_shape_tab array.
(neon_quad): New function. Return 1 if shape should set Q flag in
instructions (or equivalent), 0 otherwise.
(type_chk_of_el_type): Support F64.
(el_type_of_type_chk): Likewise.
(neon_check_type): Add support for VFP type checking (VFP data
elements fill their containing registers).
(do_vfp_cond_or_thumb): Fill in condition field in ARM mode, or 0xE
in thumb mode for VFP instructions.
(do_vfp_nsyn_opcode): New function. Look up the opcode in argument,
and encode the current instruction as if it were that opcode.
(try_vfp_nsyn): New. If this looks like a VFP instruction with ARGS
arguments, call function in PFN.
(do_vfp_nsyn_add_sub, do_vfp_nsyn_mla_mls, do_vfp_nsyn_mul)
(do_vfp_nsyn_abs_neg, do_vfp_nsyn_ldm_stm, do_vfp_nsyn_ldr_str)
(do_vfp_nsyn_sqrt, do_vfp_nsyn_div, do_vfp_nsyn_nmul)
(do_vfp_nsyn_cmp, nsyn_insert_sp, do_vfp_nsyn_push)
(do_vfp_nsyn_pop, do_vfp_nsyn_cvt, do_vfp_nsyn_cvtz): New functions.
Redirect Neon-syntax VFP instructions to VFP instruction handlers.
(do_neon_dyadic_i_su, do_neon_dyadic_i64_su, do_neon_shl_imm)
(do_neon_qshl_imm, do_neon_logic, do_neon_bitfield)
(neon_dyadic_misc, neon_compare, do_neon_tst, do_neon_qdmulh)
(do_neon_fcmp_absolute, do_neon_step, do_neon_sli, do_neon_sri)
(do_neon_qshlu_imm, neon_move_immediate, do_neon_mvn, do_neon_ext)
(do_neon_rev, do_neon_dup, do_neon_rshift_round_imm, do_neon_trn)
(do_neon_zip_uzp, do_neon_sat_abs_neg, do_neon_pair_long)
(do_neon_recip_est, do_neon_cls, do_neon_clz, do_neon_cnt)
(do_neon_swp): Use neon_select_shape not neon_check_shape. Use
neon_quad.
(vfp_or_neon_is_neon): New function. Call if a mnemonic shared
between VFP and Neon turns out to belong to Neon. Perform
architecture check and fill in condition field if appropriate.
(do_neon_addsub_if_i, do_neon_mac_maybe_scalar, do_neon_abs_neg)
(do_neon_cvt): Add support for VFP variants of instructions.
(neon_cvt_flavour): Extend to cover VFP conversions.
(do_neon_mov): Rewrite to use neon_select_shape. Add support for VFP
vmov variants.
(do_neon_ldr_str): Handle single-precision VFP load/store.
(do_neon_ld_st_interleave, do_neon_ld_st_lane, do_neon_ld_dup): Use
NS_NULL not NS_IGNORE.
(opcode_tag): Add OT_csuffixF for operands which either take a
conditional suffix, or have 0xF in the condition field.
(md_assemble): Add support for OT_csuffixF.
(NCE): Replace macro with...
(NCE_tag, NCE, NCEF): New macros.
(nCE): Replace macro with...
(nCE_tag, nCE, nCEF): New macros.
(insns): Add support for VFP insns or VFP versions of insns msr,
mrs, vsqrt, vdiv, vnmul, vnmla, vnmls, vcmp, vcmpe, vpush, vpop,
vcvtz, vmul, vmla, vmls, vadd, vsub, vabs, vneg, vldm, vldmia,
vldbdb, vstm, vstmia, vstmdb, vldr, vstr, vcvt, vmov. Group shared
VFP/Neon insns together.

17 years ago * gas/arm/itblock.s: New file. Helper macro for making all-true IT
Julian Brown [Wed, 7 Jun 2006 14:31:51 +0000 (14:31 +0000)] 
* gas/arm/itblock.s: New file. Helper macro for making all-true IT
    blocks.
    * gas/arm/neon-cond-bad-inc.s: New test. Make sure unconditional
    Neon instructions are rejected...
    * gas/arm/neon-cond-bad.s: In ARM mode, and...
    * gas/arm/neon-cond-bad_t2.s: Accepted in Thumb mode (with IT).
    * gas/arm/neon-cond-bad.l: Expected error output in ARM mode.
    * gas/arm/neon-cond-bad.d: Control ARM mode test.
    * gas/arm/neon-cond-bad_t2.d: Expected output in Thumb mode.
    * gas/arm/vfp-neon-syntax-inc.s: Test VFP Neon-style syntax.
    * gas/arm/vfp-neon-syntax.s: ...in ARM mode.
    * gas/arm/vfp-neon-syntax_t2.s: ...and Thumb mode.
    * gas/arm/vfp-neon-syntax.d: Expected output in ARM mode.
    * gas/arm/vfp-neon-syntax_t2.d: Expected output in Thumb mode.

17 years ago2006-06-06 Paul Brook <paul@codesourcery.com>
Paul Brook [Wed, 7 Jun 2006 14:08:19 +0000 (14:08 +0000)] 
2006-06-06  Paul Brook  <paul@codesourcery.com>

opcodes/
* arm-dis.c (coprocessor_opcodes): Add %c to unconditional arm
instructions.
(neon_opcodes): Add conditional execution specifiers.
(thumb_opcodes): Ditto.
(thumb32_opcodes): Ditto.
(arm_conditional): Change 0xe to "al" and add "" to end.
(ifthen_state, ifthen_next_state, ifthen_address): New.
(IFTHEN_COND): Define.
(print_insn_coprocessor, print_insn_neon): Print thumb conditions.
(print_insn_arm): Change %c to use new values of arm_conditional.
(print_insn_thumb16): Print thumb conditions.  Add %I.
(print_insn_thumb32): Print thumb conditions.
(find_ifthen_state): New function.
(print_insn): Track IT block state.
gas/testsuite/
* gas/arm/thumb2_bcond.d: Update expected output.
* gas/arm/thumb32.d: Ditto.
* gas/arm/vfp1_t2.d: Ditto.
* gas/arm/vfp1xD_t2.d: Ditto.
binutils/testsuite/
* binutils-all/arm/objdump.exp: New file.
* binutils-all/arm/thumb2-cond.s: New test.

17 years agoremove some duplicate #include's.
Alan Modra [Wed, 7 Jun 2006 11:27:58 +0000 (11:27 +0000)] 
remove some duplicate #include's.

17 years agoinclude/opcode/
Alan Modra [Wed, 7 Jun 2006 05:23:59 +0000 (05:23 +0000)] 
include/opcode/
* ppc.h (PPC_OPCODE_POWER6): Define.
Adjust whitespace.
gas/
* config/tc-ppc.c (parse_cpu): Handle "-mpower6".
(md_show_usage): Document it.
(ppc_setup_opcodes): Test power6 opcode flag bits.
* doc/c-ppc.texi (PowerPC-Opts): Document "-mpower6".
opcodes/
* ppc-dis.c (powerpc_dialect): Handle power6 option.
(print_ppc_disassembler_options): Mention power6.

17 years ago * ldlang.h (enum section_type): Delete dsect_section, copy_section,
Alan Modra [Wed, 7 Jun 2006 04:55:11 +0000 (04:55 +0000)] 
* ldlang.h (enum section_type): Delete dsect_section, copy_section,
info_section and overlay_section.  Add noalloc_section.
* ldlang.c (lang_add_section): Adjust.
* ldgram.y (type): Adjust.

17 years ago*** empty log message ***
gdbadmin [Wed, 7 Jun 2006 00:00:32 +0000 (00:00 +0000)] 
*** empty log message ***

17 years agodaily update
Alan Modra [Wed, 7 Jun 2006 00:00:05 +0000 (00:00 +0000)] 
daily update

17 years ago [ gas/ChangeLog ]
Thiemo Seufer [Tue, 6 Jun 2006 10:49:48 +0000 (10:49 +0000)] 
[ gas/ChangeLog ]
* config/tc-mips.c (ISA_SUPPORTS_DSP64): New macro.
(CPU_HAS_MIPS3D, CPU_HAS_MDMX, CPU_HAS_DSP, CPU_HAS_MT): Delete.
(macro_build): Update comment.
(mips_ip): Allow DSP64 instructions for MIPS64R2.
(mips_after_parse_args): Remove uses of CPU_HAS_MIPS3D and
CPU_HAS_MDMX.
(mips_cpu_info): Fix formatting. Add MIPS_CPU_ASE_MIPS3D and
MIPS_CPU_ASE_MDMX flags for sb1.

[ gas/testsuite/ChangeLog ]
* gas/mips/mips64-dsp.s, gas/mips/mips64-dsp.d: New DSP64 tests.
* gas/mips/mips.exp: Run DSP64 tests.

[ opcodes/ChangeLog ]
* mips-dis.c: Disassemble DSP64 instructions for MIPS64R2.
* mips-opc.c: Add DSP64 instructions.

17 years ago * gdb/remote.c (remote_insert_watchpoint): Return -1, rather than
Nathan Sidwell [Tue, 6 Jun 2006 10:03:06 +0000 (10:03 +0000)] 
* gdb/remote.c (remote_insert_watchpoint): Return -1, rather than
fatal error if packet is disabled.
(remote_remove_watchpoint, remote_insert_hw_breakpoint,
remote_remove_hw_breakpoint): Likewise.

17 years ago * ld-elfvers/vers.exp (objdump_versionstuff): Allow versions in
Alan Modra [Tue, 6 Jun 2006 04:30:21 +0000 (04:30 +0000)] 
* ld-elfvers/vers.exp (objdump_versionstuff): Allow versions in
any order.
* ld-elfvers/vers1.ver: Update.
* ld-elfvers/vers2.ver: Update.
* ld-elfvers/vers4a.ver: Update.
* ld-elfvers/vers7a.ver: Update.
* ld-elfvers/vers8.ver: Update.
* ld-elfvers/vers9.ver: Update.
* ld-elfvers/vers15.ver: Update.
* ld-elfvers/vers16a.ver: Update.
* ld-elfvers/vers17.ver: Update.
* ld-elfvers/vers18.ver: Update.
* ld-elfvers/vers20.ver: Update.
* ld-elfvers/vers20a.ver: Update.
* ld-elfvers/vers21.ver: Update.
* ld-elfvers/vers22a.ver: Update.
* ld-elfvers/vers22b.ver: Update.
* ld-elfvers/vers23a.ver: Update.
* ld-elfvers/vers23b.ver: Update.
* ld-elfvers/vers23c.ver: Update.
* ld-elfvers/vers25a.ver: Update.
* ld-elfvers/vers26a.ver: Update.
* ld-elfvers/vers27a.ver: Update.
* ld-elfvers/vers27d.ver: Update.
* ld-elfvers/vers28b.ver: Update.
* ld-elfvers/vers29.ver: Update.
* ld-elfvers/vers30.ver: Update.
* ld-elfvers/vers31.ver: Update.

17 years ago * hash.c (bfd_hash_lookup): Correct stray line.
Alan Modra [Tue, 6 Jun 2006 03:04:12 +0000 (03:04 +0000)] 
* hash.c (bfd_hash_lookup): Correct stray line.

17 years ago * elf.c (_bfd_elf_init_private_section_data): Comment typo.
Alan Modra [Tue, 6 Jun 2006 02:53:01 +0000 (02:53 +0000)] 
* elf.c (_bfd_elf_init_private_section_data): Comment typo.
(elfcore_grok_nto_status): Use long instead of pid_t.
(elfcore_grok_nto_regs, elfcore_grok_nto_note): Likewise.

17 years ago * m68hc11-dis.c (print_insn): Warning fix.
Alan Modra [Tue, 6 Jun 2006 02:48:34 +0000 (02:48 +0000)] 
* m68hc11-dis.c (print_insn): Warning fix.

17 years ago * ldlang.c (init_os): Whitespace.
Alan Modra [Tue, 6 Jun 2006 02:24:33 +0000 (02:24 +0000)] 
* ldlang.c (init_os): Whitespace.
(map_input_to_output_sections): Don't init_os for lang_input_section.
(print_all_symbols): Remove forward declaration.  Convert to ISO C.

17 years agodaily update
Alan Modra [Tue, 6 Jun 2006 00:00:04 +0000 (00:00 +0000)] 
daily update

17 years ago*** empty log message ***
gdbadmin [Tue, 6 Jun 2006 00:00:03 +0000 (00:00 +0000)] 
*** empty log message ***

17 years ago2006-06-05 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston [Mon, 5 Jun 2006 17:45:48 +0000 (17:45 +0000)] 
2006-06-05  Jeff Johnston  <jjohnstn@redhat.com>

        * config-ml.in: Alter CCASFLAGS to include special
        multilib options the same as is done for CFLAGS.

17 years ago [ gas/ChangeLog ]
Thiemo Seufer [Mon, 5 Jun 2006 16:28:36 +0000 (16:28 +0000)] 
[ gas/ChangeLog ]
* config/tc-mips.c (macro_build): Use INSERT_OPERAND wherew
appropriate.
(mips16_macro_build): Use MIPS16_INSERT_OPERAND where appropriate.
(mips_ip): Make overflowed/underflowed constant arguments in DSP
and MT instructions a fatal error. Use INSERT_OPERAND where
appropriate. Improve warnings for break and wait code overflows.
Use symbolic constant of OP_MASK_COPZ.
(mips16_ip): Use MIPS16_INSERT_OPERAND where appropriate.

[ gas/testsuite/ChangeLog ]
* gas/mips/mips32-dsp.d, gas/mips/mips32-dsp.s, gas/mips/mips32-mt.d,
gas/mips/mips32-mt.s: Remove instructions with invalid arguments.
* gas/mips/mips32-dsp.l, gas/mips/mips32-mt.l: Delete file.

[ include/opcode/ChangeLog ]
* mips.h: Improve description of MT flags.

17 years agocommon/
Daniel Jacobowitz [Mon, 5 Jun 2006 14:21:13 +0000 (14:21 +0000)] 
common/
* aclocal.m4: Use ZW_GNU_GETTEXT_SISTER_DIR.
most subdirs/
* configure: Regenerated.

17 years agobfd/, binutils/, gas/, gprof/, ld/, opcodes/
Daniel Jacobowitz [Mon, 5 Jun 2006 14:04:05 +0000 (14:04 +0000)] 
bfd/, binutils/, gas/, gprof/, ld/, opcodes/
* po/Make-in (top_builddir): Define.

17 years ago * ld-elf/sec64k.exp: Add "main" symbol. Use dc.a for addresses.
Alan Modra [Mon, 5 Jun 2006 12:53:50 +0000 (12:53 +0000)] 
* ld-elf/sec64k.exp: Add "main" symbol.  Use dc.a for addresses.
Cater for different address sizes.  Match end of line when
comparing symbols.
* ld-elf/start.s: Use dc.a for addresses.

17 years ago * ldexp.c (exp_get_abs_int): Make error message the same as
Alan Modra [Mon, 5 Jun 2006 12:45:34 +0000 (12:45 +0000)] 
* ldexp.c (exp_get_abs_int): Make error message the same as
others emitted in this file.

17 years ago * Makefile.in: Regenerate.
Alan Modra [Mon, 5 Jun 2006 12:33:13 +0000 (12:33 +0000)] 
* Makefile.in: Regenerate.
* gconfig.in: Regenerate.

17 years ago * config.in: Regenerate.
Alan Modra [Mon, 5 Jun 2006 12:30:16 +0000 (12:30 +0000)] 
* config.in: Regenerate.

17 years ago * Makefile.am: Run "make dep-am".
Alan Modra [Mon, 5 Jun 2006 12:28:18 +0000 (12:28 +0000)] 
* Makefile.am: Run "make dep-am".
* Makefile.in: Regenerate.
* config.in: Regenerate.

17 years ago * Makefile.in: Regenerate.
Alan Modra [Mon, 5 Jun 2006 12:27:01 +0000 (12:27 +0000)] 
* Makefile.in: Regenerate.

17 years ago * ldlang.c (lookup_name): Delete dead code. Remove FIXMEs.
Alan Modra [Mon, 5 Jun 2006 06:12:40 +0000 (06:12 +0000)] 
* ldlang.c (lookup_name): Delete dead code.  Remove FIXMEs.

17 years agoRemove leading bfd/ on filenames.
Alan Modra [Mon, 5 Jun 2006 00:12:59 +0000 (00:12 +0000)] 
Remove leading bfd/ on filenames.

17 years ago*** empty log message ***
gdbadmin [Mon, 5 Jun 2006 00:00:32 +0000 (00:00 +0000)] 
*** empty log message ***

17 years agodaily update
Alan Modra [Mon, 5 Jun 2006 00:00:04 +0000 (00:00 +0000)] 
daily update

17 years agodaily update
Alan Modra [Sun, 4 Jun 2006 00:00:04 +0000 (00:00 +0000)] 
daily update

17 years ago*** empty log message ***
gdbadmin [Sun, 4 Jun 2006 00:00:03 +0000 (00:00 +0000)] 
*** empty log message ***

17 years ago * emultempl/elf32.em (global_found): Make it a pointer.
Alan Modra [Sat, 3 Jun 2006 02:45:26 +0000 (02:45 +0000)] 
* emultempl/elf32.em (global_found): Make it a pointer.
(stat_needed, try_needed): Adjust.
(check_needed): Don't skip non-loaded as-needed entries.  Only
consider entries with both filename and the_bfd non-null.
(after_open): Try loading non-loaded as-needed libs to satisfy
DT_NEEDED libs.

17 years agodaily update
Alan Modra [Sat, 3 Jun 2006 00:00:06 +0000 (00:00 +0000)] 
daily update

17 years ago*** empty log message ***
gdbadmin [Sat, 3 Jun 2006 00:00:03 +0000 (00:00 +0000)] 
*** empty log message ***

17 years agobinutils:
Joseph Myers [Fri, 2 Jun 2006 23:08:12 +0000 (23:08 +0000)] 
binutils:
* doc/Makefile.am (TEXI2DVI): Define.
* doc/Makefile.in: Regenerate.

gas:
* doc/Makefile.am (TEXI2DVI): Define.
* doc/Makefile.in: Regenerate.
* doc/c-arc.texi: Fix typo.

ld:
* Makefile.am (TEXI2DVI): Add -I $(top_srcdir)/../libiberty.
* Makefile.in: Regenerate.

17 years agomerge from gcc
DJ Delorie [Fri, 2 Jun 2006 15:37:03 +0000 (15:37 +0000)] 
merge from gcc

17 years ago(GDB/MI File Commands): New node split from Program Control.
Nick Roberts [Fri, 2 Jun 2006 10:15:41 +0000 (10:15 +0000)] 
(GDB/MI File Commands): New node split from Program Control.

17 years ago*** empty log message ***
Nick Roberts [Fri, 2 Jun 2006 10:14:27 +0000 (10:14 +0000)] 
*** empty log message ***

17 years ago*** empty log message ***
Nick Roberts [Fri, 2 Jun 2006 10:12:46 +0000 (10:12 +0000)] 
*** empty log message ***

17 years ago * ld-powerpc/tlsexe.r: Update for removal of some section syms.
Alan Modra [Fri, 2 Jun 2006 07:53:30 +0000 (07:53 +0000)] 
* ld-powerpc/tlsexe.r: Update for removal of some section syms.
* ld-powerpc/tlsexetoc.r: Likewise.
* ld-powerpc/tlsso.r: Likewise.
* ld-powerpc/tlstocso.r: Likewise.
* ld-s390/tlsbin_64.rd: Likewise.
* ld-s390/tlspic_64.rd: Likewise.

17 years ago(print_it_typical): Use EXEC_ASYNC_LOCATION_REACHED.
Nick Roberts [Fri, 2 Jun 2006 03:43:18 +0000 (03:43 +0000)] 
(print_it_typical): Use EXEC_ASYNC_LOCATION_REACHED.

17 years ago*** empty log message ***
Nick Roberts [Fri, 2 Jun 2006 03:42:28 +0000 (03:42 +0000)] 
*** empty log message ***

17 years agobfd/
Alan Modra [Fri, 2 Jun 2006 00:32:00 +0000 (00:32 +0000)] 
bfd/
PR ld/2723
* elflink.c (bfd_elf_final_link): Don't output section symbols
for special ELF sections.
ld/testsuite/
Update for removal of some section syms.

17 years ago*** empty log message ***
gdbadmin [Fri, 2 Jun 2006 00:00:32 +0000 (00:00 +0000)] 
*** empty log message ***

17 years agodaily update
Alan Modra [Fri, 2 Jun 2006 00:00:06 +0000 (00:00 +0000)] 
daily update

17 years ago(GDB/MI Development and Front Ends): Use sourceware.org for mailing lists.
Nick Roberts [Thu, 1 Jun 2006 23:40:50 +0000 (23:40 +0000)] 
(GDB/MI Development and Front Ends): Use sourceware.org for mailing lists.

17 years ago*** empty log message ***
Nick Roberts [Thu, 1 Jun 2006 23:39:23 +0000 (23:39 +0000)] 
*** empty log message ***

17 years agomerge from gcc
DJ Delorie [Thu, 1 Jun 2006 14:57:50 +0000 (14:57 +0000)] 
merge from gcc

17 years ago * doc/c-avr.texi: New file.
Denis Chertykov [Thu, 1 Jun 2006 14:54:25 +0000 (14:54 +0000)] 
* doc/c-avr.texi: New file.
* doc/Makefile.am (CPU_DOCS): Add c-avr.texi
* doc/all.texi: Set AVR
* doc/as.texinfo: Include c-avr.texi

17 years ago * config/obj-ieee.c: Delete.
Alan Modra [Thu, 1 Jun 2006 12:21:05 +0000 (12:21 +0000)] 
* config/obj-ieee.c: Delete.
* config/obj-ieee.h: Delete.
* Makefile.am (OBJ_FORMATS): Remove ieee.
(OBJ_FORMAT_CFILES, OBJ_FORMAT_HFILES): Similarly.
(obj-ieee.o): Remove rule.
* Makefile.in: Regenerate.
* configure.in (atof): Remove tahoe.
(OBJ_MAYBE_IEEE): Don't define.
* configure: Regenerate.
* config.in: Regenerate.
* doc/Makefile.in: Regenerate.
* po/POTFILES.in: Regenerate.

17 years agoinclude/elf/
H.J. Lu [Thu, 1 Jun 2006 05:40:24 +0000 (05:40 +0000)] 
include/elf/

2006-05-31  H.J. Lu  <hongjiu.lu@intel.com>

* internal.h (ELF_SECTION_SIZE): New.
(ELF_IS_SECTION_IN_SEGMENT): Likewise.
(ELF_IS_SECTION_IN_SEGMENT_FILE): Updated.
(ELF_IS_SECTION_IN_SEGMENT_MEMORY): Likewise.

ld/testsuite/

2006-05-31  H.J. Lu  <hongjiu.lu@intel.com>

* ld-elf/binutils.exp: Make it Linux only.
(strip_test): Renamed to binutils_test. Check for unsupported
options.
Add more tests.

* ld-elf/commonpage1.d: Make it Linux only.
* ld-elf/maxpage1.d: Likewise.

* ld-elf/maxpage1.s: Add main, start and __start.

* ld-elf/maxpage2.d: New file.
* ld-elf/tbss1.s: Likewise.
* ld-elf/tbss2.s: Likewise.
* ld-elf/tdata1.s: Likewise.
* ld-elf/tdata2.s: Likewise.

17 years ago * stabs.c (_bfd_link_section_stabs): Use bfd_make_section*_with_flags
Alan Modra [Thu, 1 Jun 2006 03:45:58 +0000 (03:45 +0000)] 
* stabs.c (_bfd_link_section_stabs): Use bfd_make_section*_with_flags
instead of bfd_make_section*.
* aix386-core.c: Likewise.
* aix5ppc-core.c: Likewise.
* aout-adobe.c: Likewise.
* aoutf1.h: Likewise.
* binary.c: Likewise.
* cisco-core.c: Likewise.
* coff-arm.c: Likewise.
* coff-h8300.c: Likewise.
* elf.c: Likewise.
* elf32-bfin.c: Likewise.
* elf32-m32c.c: Likewise.
* hppabsd-core.c: Likewise.
* hpux-core.c: Likewise.
* i386linux.c: Likewise.
* ieee.c: Likewise.
* ihex.c: Likewise.
* irix-core.c: Likewise.
* lynx-core.c: Likewise.
* m68klinux.c: Likewise.
* mach-o.c: Likewise.
* netbsd-core.c: Likewise.
* nlmcode.h: Likewise.
* opncls.c: Likewise.
* osf-core.c: Likewise.
* peXXigen.c: Likewise.
* ppcboot.c: Likewise.
* ptrace-core.c: Likewise.
* rs6000-core.c: Likewise.
* sco5-core.c: Likewise.
* sparclinux.c: Likewise.
* srec.c: Likewise.
* sunos.c: Likewise.
* trad-core.c: Likewise.
* xcofflink.c: Likewise.
* xsym.c: Likewise.

17 years agodaily update
Alan Modra [Thu, 1 Jun 2006 00:00:06 +0000 (00:00 +0000)] 
daily update

17 years ago*** empty log message ***
gdbadmin [Thu, 1 Jun 2006 00:00:03 +0000 (00:00 +0000)] 
*** empty log message ***

17 years ago2006-05-31 Michael Snyder <msnyder@redhat.com>
Michael Snyder [Wed, 31 May 2006 23:15:50 +0000 (23:15 +0000)] 
2006-05-31  Michael Snyder  <msnyder@redhat.com>

* mips-tdep.c: Comment tweaks.

17 years ago(GDB/MI Development and Front Ends): New Node.
Nick Roberts [Wed, 31 May 2006 21:55:46 +0000 (21:55 +0000)] 
(GDB/MI Development and Front Ends): New Node.

17 years ago*** empty log message ***
Nick Roberts [Wed, 31 May 2006 21:54:27 +0000 (21:54 +0000)] 
*** empty log message ***

17 years ago * texi2pod.pl: Correct handling of absolute @include.
Daniel Jacobowitz [Wed, 31 May 2006 15:47:48 +0000 (15:47 +0000)] 
* texi2pod.pl: Correct handling of absolute @include.

17 years agoConfigury changes: update src repository (binutils, gdb, and rda) to use
Daniel Jacobowitz [Wed, 31 May 2006 15:14:46 +0000 (15:14 +0000)] 
Configury changes: update src repository (binutils, gdb, and rda) to use
config/gettext-sister.m4 instead of the old gettext.m4.  Regenerate all
affected autotools files.  Include intl in gdb releases again.

17 years ago*** empty log message ***
gdbadmin [Wed, 31 May 2006 00:00:33 +0000 (00:00 +0000)] 
*** empty log message ***

17 years agodaily update
Alan Modra [Wed, 31 May 2006 00:00:07 +0000 (00:00 +0000)] 
daily update

17 years ago * remote-utils.c (all_symbols_looked_up): New variable.
Daniel Jacobowitz [Tue, 30 May 2006 19:05:33 +0000 (19:05 +0000)] 
* remote-utils.c (all_symbols_looked_up): New variable.
(look_up_one_symbol): Check it.
* server.h (look_up_one_symbol): New declaration.
* thread-db.c (thread_db_init): Set all_symbols_looked_up.

17 years agobfd/
H.J. Lu [Tue, 30 May 2006 16:45:32 +0000 (16:45 +0000)] 
bfd/

2006-05-30  H.J. Lu  <hongjiu.lu@intel.com>

* bfd.c (bfd_emul_get_maxpagesize): New.
(bfd_elf_set_pagesize): Likewise.
(bfd_emul_set_maxpagesize): Likewise.
(bfd_emul_get_commonpagesize): Likewise.
(bfd_emul_set_commonpagesize): Likewise.
* bfd-in2.h: Regenerated.

* elf-bfd.h (elf_backend_data): Add commonpagesize.
(xvec_get_elf_backend_data): New.
(get_elf_backend_data): Use xvec_get_elf_backend_data.

* elf32-arm.c (elf32_arm_vxworks_bed): Remove const.
* elfxx-target.h (elfNN_bed): Likewise.

* elf32-arm.c (ELF_COMMONPAGESIZE): Defined.
* elf32-mips.c (ELF_COMMONPAGESIZE): Likewise.
* elf32-ppc.c (ELF_COMMONPAGESIZE): Likewise.
* elf32-sh.c (ELF_COMMONPAGESIZE): Likewise.
* elf32-sh64.c (ELF_COMMONPAGESIZE): Likewise.
* elf32-sparc.c (ELF_COMMONPAGESIZE): Likewise.
* elf64-alpha.c (ELF_COMMONPAGESIZE): Likewise.
* elf64-ppc.c (ELF_COMMONPAGESIZE): Likewise.
* elf64-sparc.c (ELF_COMMONPAGESIZE): Likewise.
* elf64-x86-64.c (ELF_COMMONPAGESIZE): Likewise.
* elfn32-mips.c (ELF_COMMONPAGESIZE): Likewise.
* elfxx-ia64.c (ELF_COMMONPAGESIZE): Likewise.

* elfxx-target.h (ELF_COMMONPAGESIZE): Define if not defined.
(elfNN_bed): Initialize commonpagesize with ELF_COMMONPAGESIZE.

* targets.c (bfd_find_target): Support NULL abfd.

ld/

2006-05-30  H.J. Lu  <hongjiu.lu@intel.com>

* emulparams/arcelf.sh (MAXPAGESIZE): Changed to
"CONSTANT (MAXPAGESIZE)".
* emulparams/armelf_nbsd.sh: Likewise.
* emulparams/armelf_vxworks.sh: Likewise.
* emulparams/armnto.sh: Likewise.
* emulparams/armsymbian.sh: Likewise.
* emulparams/crislinux.sh: Likewise.
* emulparams/elf32_i860.sh: Likewise.
* emulparams/elf32_i960.sh: Likewise.
* emulparams/elf32am33lin.sh: Likewise.
* emulparams/elf32bfinfd.sh: Likewise.
* emulparams/elf32bmipn32-defs.sh: Likewise.
* emulparams/elf32frvfd.sh: Likewise.
* emulparams/elf32i370.sh: Likewise.
* emulparams/elf32lppcnto.sh: Likewise.
* emulparams/elf32mcore.sh: Likewise.
* emulparams/elf32openrisc.sh: Likewise.
* emulparams/elf32ppcnto.sh: Likewise.
* emulparams/elf32ppcwindiss.sh: Likewise.
* emulparams/elf32vax.sh: Likewise.
* emulparams/elf32xc16x.sh: Likewise.
* emulparams/elf32xc16xl.sh: Likewise.
* emulparams/elf32xc16xs.sh: Likewise.
* emulparams/elf64_aix.sh: Likewise.
* emulparams/elf64hppa.sh: Likewise.
* emulparams/elf64mmix.sh: Likewise.
* emulparams/elf_i386_be.sh: Likewise.
* emulparams/elf_i386_chaos.sh: Likewise.
* emulparams/elf_i386_ldso.sh: Likewise.
* emulparams/hppa64linux.sh: Likewise.
* emulparams/hppalinux.sh: Likewise.
* emulparams/hppaobsd.sh: Likewise.
* emulparams/i386lynx.sh: Likewise.
* emulparams/i386moss.sh: Likewise.
* emulparams/i386nto.sh: Likewise.
* emulparams/i386nw.sh: Likewise.
* emulparams/m32relf_linux.sh: Likewise.
* emulparams/m68kpsos.sh: Likewise.
* emulparams/or32elf.sh: Likewise.
* emulparams/pjelf.sh: Likewise.
* emulparams/pjlelf.sh: Likewise.
* emulparams/ppclynx.sh: Likewise.
* emulparams/ppcnw.sh: Likewise.
* emulparams/shelf32_nbsd.sh : Likewise.
* emulparams/shelf_nbsd.sh: Likewise.
* emulparams/shelf_nto.sh: Likewise.
* emulparams/shlelf_nto.sh: Likewise.
* emulparams/xtensa-config.sh: Likewise.

* emulparams/armelf_linux.sh (MAXPAGESIZE): Changed to
"CONSTANT (MAXPAGESIZE)".
(COMMONPAGESIZE): Changed to "CONSTANT (COMMONPAGESIZE)".
* emulparams/elf32_sparc.sh: Likewise.
* emulparams/elf32bmip.sh: Likewise.
* emulparams/elf32ppccommon.sh: Likewise.
* emulparams/elf64_ia64.sh: Likewise.
* emulparams/elf64_s390.sh: Likewise.
* emulparams/elf64_sparc.sh: Likewise.
* emulparams/elf64alpha.sh: Likewise.
* emulparams/elf64ppc.sh: Likewise.
* emulparams/elf_i386.sh: Likewise.
* emulparams/elf_i386_vxworks.sh: Likewise.
* emulparams/elf_s390.sh: Likewise.
* emulparams/elf_x86_64.sh: Likewise.
* emulparams/shlelf32_linux.sh: Likewise.
* emulparams/shlelf_linux.sh: Likewise.

* emulparams/elf32bmipn32.sh (COMMONPAGESIZE): Changed to
"CONSTANT (COMMONPAGESIZE)".
* emulparams/elf32btsmipn32.sh: Likewise.

* emultempl/elf32.em (gld${EMULATION_NAME}_handle_option): Add
"-z max-page-size=" and "-z common-page-size=".
(gld${EMULATION_NAME}_list_options): Likewise.

* ld.h (ld_config_type): Add maxpagesize and commonpagesize.

* ld.texinfo: Document "-z max-page-size=" and
"-z common-page-size=".

* ldexp.c (exp_print_token): Handle CONSTANT.
(fold_name): Likewise.
* ldgram.y: Likewise.
* ldlex.l: Likewise.

* ldmain.c (main): Initiliaze config.maxpagesize and
config.commonpagesize. Call bfd_emul_set_maxpagesize if
config.maxpagesize isn't 0. Call bfd_emul_set_commonpagesize if
config.commonpagesize config.maxpagesize isn't 0.
ld/testsuite/

2006-05-30  H.J. Lu  <hongjiu.lu@intel.com>

* ld-elf/binutils.exp: New file.
* ld-elf/commonpage1.d: Likewise.
* ld-elf/maxpage1.d: Likewise.
* ld-elf/maxpage1.s: Likewise.

17 years agoTypo fix.
Daniel Jacobowitz [Tue, 30 May 2006 15:58:47 +0000 (15:58 +0000)] 
Typo fix.

17 years agogdb/
Daniel Jacobowitz [Tue, 30 May 2006 15:57:09 +0000 (15:57 +0000)] 
gdb/
* Makefile.in (arm-linux-nat.o): Update dependencies.
* arm-linux-nat.c: Include "gdb_proc_service.h".
(PTRACE_GET_THREAD_AREA): Define.
(ps_get_thread_area): New function.
gdb/gdbserver/
* Makefile.in (linux-arm-low.o): Update dependencies.
* linux-arm-low.c: Include "../gdb_proc_service.h".
(PTRACE_GET_THREAD_AREA): Define.
(ps_get_thread_area): New function.

17 years agoUpdate Spanish translation
Nick Clifton [Tue, 30 May 2006 11:01:59 +0000 (11:01 +0000)] 
Update Spanish translation

17 years ago*** empty log message ***
gdbadmin [Tue, 30 May 2006 00:00:33 +0000 (00:00 +0000)] 
*** empty log message ***

17 years agodaily update
Alan Modra [Tue, 30 May 2006 00:00:09 +0000 (00:00 +0000)] 
daily update

17 years ago * doc/c-avr.texi: New file.
Denis Chertykov [Mon, 29 May 2006 17:57:48 +0000 (17:57 +0000)] 
* doc/c-avr.texi: New file.
* doc/Makefile.am (CPU_DOCS): Add c-avr.texi
* doc/all.texi: Set AVR
* doc/as.texinfo: Include c-avr.texi

18 years ago*** empty log message ***
gdbadmin [Mon, 29 May 2006 00:00:32 +0000 (00:00 +0000)] 
*** empty log message ***

18 years agodaily update
Alan Modra [Mon, 29 May 2006 00:00:12 +0000 (00:00 +0000)] 
daily update

18 years agomerge from gcc
DJ Delorie [Sun, 28 May 2006 17:49:15 +0000 (17:49 +0000)] 
merge from gcc

18 years ago* dwarf2-frame.h (enum dwarf2_frame_reg_rule): Add
Alexandre Oliva [Sun, 28 May 2006 05:56:50 +0000 (05:56 +0000)] 
* dwarf2-frame.h (enum dwarf2_frame_reg_rule): Add
DWARF2_FRAME_REG_SAVED_VAL_OFFSET and
DWARF2_FRAME_REG_SAVED_VAL_EXP.
* dwarf2-frame.c (execute_cfa_program): Handle val_offset,
val_offset_sf and val_expression.
(dwarf2_frame_prev_register): Handle the new reg rules.
(dwarf2_frame_this_id): Use pc instead of function entry point.

18 years ago* dwarf2-frame.c (struct dwarf2_cie): Add signal_frame field.
Alexandre Oliva [Sun, 28 May 2006 05:56:20 +0000 (05:56 +0000)] 
* dwarf2-frame.c (struct dwarf2_cie): Add signal_frame field.
(dwarf2_frame_sniffer): Use it.
(decode_frame_entry_1): Set it according to augmentation "S".

18 years ago * config/bfin-parse.y (check_macfunc): Loose the condition of
Jie Zhang [Sun, 28 May 2006 00:53:08 +0000 (00:53 +0000)] 
* config/bfin-parse.y (check_macfunc): Loose the condition of
calling check_multiply_halfregs ().

18 years agodaily update
Alan Modra [Sun, 28 May 2006 00:00:07 +0000 (00:00 +0000)] 
daily update

18 years ago*** empty log message ***
gdbadmin [Sun, 28 May 2006 00:00:06 +0000 (00:00 +0000)] 
*** empty log message ***

18 years ago From Peter Schauer <peterschauer@gmx.net>
Joel Brobecker [Sat, 27 May 2006 17:39:29 +0000 (17:39 +0000)] 
    From Peter Schauer <peterschauer@gmx.net>
        * m2-typeprint.c (m2_record_fields): Move variable declarations
        to the begining of the block.

18 years agobfd/
Alan Modra [Sat, 27 May 2006 00:47:45 +0000 (00:47 +0000)] 
bfd/
* elf.c (assign_file_positions_for_load_sections): Retrieve
maxpagesize from m->p_align if it is valid.  Set p_vaddr,
p_paddr and p_align earlier.  Revert 2006-05-19 change to p_align.
(copy_elf_program_header): Copy p_align.  Set p_align_valid.
include/elf/
* internal.h (elf_segment_map): Add p_align and p_align_valid.

18 years agodaily update
Alan Modra [Sat, 27 May 2006 00:00:05 +0000 (00:00 +0000)] 
daily update

18 years ago*** empty log message ***
gdbadmin [Sat, 27 May 2006 00:00:02 +0000 (00:00 +0000)] 
*** empty log message ***

18 years agoRemove ">>>>>>> 1.2917".
H.J. Lu [Fri, 26 May 2006 17:09:48 +0000 (17:09 +0000)] 
Remove ">>>>>>> 1.2917".

18 years ago2006-05-26 H.J. Lu <hongjiu.lu@intel.com>
H.J. Lu [Fri, 26 May 2006 14:01:08 +0000 (14:01 +0000)] 
2006-05-26  H.J. Lu  <hongjiu.lu@intel.com>

* elf64-x86-64.c (ELF_MINPAGESIZE): Changed to 0x1000.

18 years ago2006-05-25 H.J. Lu <hongjiu.lu@intel.com>
H.J. Lu [Fri, 26 May 2006 03:04:09 +0000 (03:04 +0000)] 
2006-05-25  H.J. Lu  <hongjiu.lu@intel.com>

* elf64-x86-64.c (ELF_MINPAGESIZE): Set to 0x100000.

18 years agobfd/
H.J. Lu [Fri, 26 May 2006 02:44:19 +0000 (02:44 +0000)] 
bfd/

2006-05-25  H.J. Lu  <hongjiu.lu@intel.com>

* elf64-x86-64.c (ELF_MAXPAGESIZE): Updated to 0x200000.

ld/

2006-05-25  H.J. Lu  <hongjiu.lu@intel.com>

* emulparams/elf_x86_64.sh (MAXPAGESIZE): Updated to 0x200000.

ld/testsuite/

2006-05-25  H.J. Lu  <hongjiu.lu@intel.com>

* ld-x86-64/tlsbin.dd: Updated for 2MB maximum page size.
* ld-x86-64/tlsbin.rd: Likewise.
* ld-x86-64/tlsbin.sd: Likewise.
* ld-x86-64/tlsbin.td: Likewise.
* ld-x86-64/tlsbindesc.dd: Likewise.
* ld-x86-64/tlsbindesc.rd: Likewise.
* ld-x86-64/tlsbindesc.sd: Likewise.
* ld-x86-64/tlsbindesc.td: Likewise.
* ld-x86-64/tlsdesc.dd: Likewise.
* ld-x86-64/tlsdesc.pd: Likewise.
* ld-x86-64/tlsdesc.rd: Likewise.
* ld-x86-64/tlsdesc.sd: Likewise.
* ld-x86-64/tlsdesc.td: Likewise.
* ld-x86-64/tlsgdesc.dd: Likewise.
* ld-x86-64/tlspic.dd: Likewise.
* ld-x86-64/tlspic.rd: Likewise.
* ld-x86-64/tlspic.sd: Likewise.
* ld-x86-64/tlspic.td: Likewise.

18 years agodaily update
Alan Modra [Fri, 26 May 2006 00:00:06 +0000 (00:00 +0000)] 
daily update

18 years ago*** empty log message ***
gdbadmin [Fri, 26 May 2006 00:00:03 +0000 (00:00 +0000)] 
*** empty log message ***

18 years ago * src-release (DEVO_SUPPORT): Add config.rpath.
Daniel Jacobowitz [Thu, 25 May 2006 17:21:33 +0000 (17:21 +0000)] 
* src-release (DEVO_SUPPORT): Add config.rpath.

18 years ago * elf.c (sym_is_global): Return a bfd_boolean.
Alan Modra [Thu, 25 May 2006 15:08:28 +0000 (15:08 +0000)] 
* elf.c (sym_is_global): Return a bfd_boolean.
(ignore_section_sym): New function.
(elf_map_symbols): Use ignore_section_sym to discard some syms.
(_bfd_elf_symbol_from_bfd_symbol): Ensure section belongs to
bfd before using elf_section_syms.

18 years ago * MAINTAINERS: Update my email address.
Joern Rennecke [Thu, 25 May 2006 14:07:20 +0000 (14:07 +0000)] 
* MAINTAINERS: Update my email address.

18 years ago2006-05-25 H.J. Lu <hongjiu.lu@intel.com>
H.J. Lu [Thu, 25 May 2006 13:59:25 +0000 (13:59 +0000)] 
2006-05-25  H.J. Lu  <hongjiu.lu@intel.com>

* config.bfd: (sh-*-linux*): Treat as 64bit target.
(sh*l*-*-netbsdelf*): Likewise.
(sh-*-netbsdelf*): Likewise.
(shl*-*-elf*): Likewise.
(sh[1234]l*-*-elf*): Likewise.
(sh3el*-*-elf*): Likewise.
(shl*-*-kaos*): Likewise.
(sh-*-elf*): Likewise.
(sh[1234]*-elf*): Likewise.
(sh-*-rtems*): Likewise.
(sh-*-kaos*): Likewise.

18 years agoinclude/opcodes/
Richard Sandiford [Thu, 25 May 2006 08:09:03 +0000 (08:09 +0000)] 
include/opcodes/
* m68k.h (mcf_mask): Define.

opcodes/
* m68k-opc.c (m68k_opcodes): Fix the masks of the Coldfire fmovemd
and fmovem entries.  Put register list entries before immediate
mask entries.  Use "l" rather than "L" in the fmovem entries.
* m68k-dis.c (match_insn_m68k): Remove the PRIV argument and work it
out from INFO.
(m68k_scan_mask): New function, split out from...
(print_insn_m68k): ...here.  If no architecture has been set,
first try printing an m680x0 instruction, then try a Coldfire one.

gas/testsuite/
* gas/m68k/mcf-fpu.s: Add fmovemd and fmovem instructions.
* gas/m68k/mcf-fpu.d: Adjust accordingly.

18 years ago2006-05-25 Paolo Bonzini <bonzini@gnu.org>
Paolo Bonzini [Thu, 25 May 2006 08:01:03 +0000 (08:01 +0000)] 
2006-05-25  Paolo Bonzini  <bonzini@gnu.org>

* Makefile.def (bfd, opcodes): Fix lib_path.
* Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Replace ADAC with ADAFLAGS.
(restrap): Move under "@if gcc-bootstrap".  Fix typo.
* Makefile.in: Regenerate.

18 years ago * gas/bfin/vector2.s, gas/bfin/vector2.d: Test to ensure (m) is not
Jie Zhang [Thu, 25 May 2006 04:07:53 +0000 (04:07 +0000)] 
* gas/bfin/vector2.s, gas/bfin/vector2.d: Test to ensure (m) is not
thrown away.

18 years ago * config/bfin-parse.y (asm_1): Better check and deal with
Jie Zhang [Thu, 25 May 2006 04:07:08 +0000 (04:07 +0000)] 
* config/bfin-parse.y (asm_1): Better check and deal with
vector and scalar Multiply 16-Bit Operands instructions.

18 years agobfd/
H.J. Lu [Thu, 25 May 2006 01:03:09 +0000 (01:03 +0000)] 
bfd/

2006-05-24  H.J. Lu  <hongjiu.lu@intel.com>

PR ld/1485
* config.bfd: Set want64 to true if 64bit bfd is used.
(sh-*-linux*): Use targ64_selvecs for 64bit targets.
(sh*l*-*-netbsdelf*): Likewise.
(sh-*-netbsdelf*): Likewise.
(shl*-*-elf*): Likewise.
(sh[1234]l*-*-elf*): Likewise.
(sh3el*-*-elf*): Likewise.
(shl*-*-kaos*): Likewise.
(sh-*-elf*): Likewise.
(sh[1234]*-elf*): Likewise.
(sh-*-rtems*): Likewise.
(sh-*-kaos*): Likewise.

ld/

2006-05-24  H.J. Lu  <hongjiu.lu@intel.com>

PR ld/1485
* configure.in: Use ${srcdir}/../bfd/config.bfd to check 64bit
bfd.  Support 64bit host for --enable-targets=all.
* configure: Regenerated.

This page took 0.04759 seconds and 4 git commands to generate.