* configure.in (arm-*-netbsdelf*): Add target.
[deliverable/binutils-gdb.git] / gas / ChangeLog
index 9e753580cddfdf58371df468937cddb9e9c17d34..5f6de9b09db4af30d0515b5b62af8a91ea85b01d 100644 (file)
@@ -1,3 +1,147 @@
+2001-12-20  Jason Thorpe  <thorpej@wasabisystems.com>
+
+       * configure.in (arm-*-netbsdelf*): Add target.
+       * configure: Regenerate.
+
+2001-12-18  Nick Clifton  <nickc@cambridge.redhat.com>
+
+       * config/tc-mips.h (TC_HANDLE_FX_DONE): Remove redundant
+       definition. 
+
+2001-12-18  Niibe Yutaka  <gniibe@m17n.org>
+
+       * configure.in (assign object format): Bug fix for setting
+       endian.
+       * configure: Regenerate.
+
+2001-12-18  matthew green  <mrg@eterna.com.au>
+
+       * configure.in (m68k-*-netbsdelf*): New target.
+       (m68k-*-netbsd*): Also include ELF support.
+       (m68k-*-netbsdaout*): New alias for m68*-*-netbsd*.
+       * configure: Regenerate.
+
+2001-12-18  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
+
+       * gasp.c (main): Protoype.
+
+2001-12-17  Richard Henderson  <rth@redhat.com>
+
+       * config/tc-alpha.c (alpha_handle_align): Encode unop with RB as $sp.
+
+2001-12-17  Nick Clifton  <nickc@cambridge.redhat.com>
+
+       * cgen.c: Add prototype for queue_fixup.
+       (gas_cgen_parse_operand): Move initilisastion of errmsg to avoid
+       possible longjmp corruption.
+       * cgen.h: Add prototype for gas_cgen_md_operand.
+
+2001-12-15  Alan Modra  <amodra@bigpond.net.au>
+
+       * config/obj-elf.c (obj_elf_init_stab_section): References are
+       kept to section name strings.  Don't alloca them!
+
+2001-12-12  Alexandre Oliva  <aoliva@redhat.com>
+
+       * config/tc-d10v.c (get_operands): Mark OPERAND_PLUS after
+       OPERAND_ATSIGN as O_absent.
+
+2001-12-07  Geoffrey Keating  <geoffk@redhat.com>
+           Richard Henderson  <rth@redhat.com>
+
+       * configure.in: Add support for xstormy16.
+       * configure: Regenerated.
+       * Makefile.am: Add support for xstormy16.
+       * Makefile.in: Regenerated.
+       * config/tc-xstormy16.c: New file.
+       * config/tc-xstormy16.h: New file.
+
+2001-12-06  Richard Earnshaw (rearnsha@arm.com)
+
+       * tc-arm.c (do_arit, do_cmp, do_mov, do_ldst, do_ldstt, do_ldmstm)
+       (do_branch, do_swi, do_adr, do_adrl, do_empty, do_mul, do_mla)
+       (do_swap, do_msr, do_mrs, do_mull, do_ldstv4, do_bx, do_blx)
+       (do_bkpt, do_clz, do_lstc2, do_cdp2, do_co_reg2, do_smla, do_smlal)
+       (do_smul, do_qadd, do_pld, do_ldrd, do_co_reg2c, do_cdp, do_lstc)
+       (do_co_reg, do_fpa_ctrl, do_fpa_ldst, do_fpa_ldmstm, do_fpa_monadic)
+       (do_fpa_dyadic, do_fpa_cmp, do_fpa_from_reg, do_fpa_to_reg, do_mia)
+       (do_mar, do_mra, do_c_binops, do_c_binops_1, do_c_binops_2)
+       (do_c_binops_3, do_c_triple, do_c_triple_4, do_c_triple_5, do_c_quad)
+       (do_c_quad_6, do_c_dspsc, do_c_dspsc_1, do_c_dspsc_2, do_c_shift)
+       (do_c_shift_1, do_c_shift_2, do_c_ldst, do_c_ldst_1, do_c_ldst_2)
+       (do_c_ldst_3, do_c_ldst_4, do_branch25): Delete redundant argument,
+       FLAGS.
+       (struct asm_opcode): Adjust parms field accordingly.
+       (md_assemble): Don't pass dummy second argument when calling worker
+       functions.
+       (build_arm_ops_hsh): Add prototype
+       (BAD_FLAGS): Delete.
+
+2001-12-05  Richard Earnshaw  <rearnsha@arm.com>
+
+       * tc-arm.c (struct asm_opcode): Delete comp_suffix and flags.  Add
+       cond_offset.  Rename variants->variant.
+       (insns): Adjust for new format.  Explicitly code each variant that
+       takes flags.  Remove temporary instructions.
+       (struct arm_it): Remove redundant field suffix.
+       (s_flag, ldr_flags, str_flags, byte_flag, cmp_flags, ldm_flags)
+       (stm_flags, lfm_flags, sfm_flags, round_flags, fix_flags, except_flag)
+       (long_flag): Delete.
+       (struct asm_flg): Delete.
+       (LONGEST_INST): Delete.
+       (V4_STR_BIT): Define.
+       (struct thumb_opcode): Rename variants->variant.
+       (do_empty): Renamed from do_nop.
+       (ldst_extend): Delete argument hwse.  Split code for half-word and
+       signed byte instructions to ...
+       (ldst_extend_v4): ... here.
+       (ld_mode_required_here): Use ldst_extend_v4.
+       (do_ldrd): Simplify now that this is only called for ldrd.  No
+       need to test for XScale, which was wrong anyway.  Don't reject r12
+       as a target register.  Add test that ldrd doesn't update an index
+       register.
+       (do_pld): Don't allow post-indexed or write-back addressing modes.
+       Adjust call to ldst_extend.
+       (do_adr): Split code for adrl to ...
+       (do_adrl): ... here.
+       (do_cmp): No need to fold in COND_BIT.
+       (do_ldst): Simplify.  Split code for ldrt/strt into do_ldstt.  Split
+       code to handle half-word and signed byte instructions to ...
+       (do_ldstv4): ... here.
+       (do_ldstt): New function.  Handle load/store with translate.
+       (do_ldmstm): Write feature modification bits directly into
+       inst.instruction.
+       (do_fpa_ldst): Remove suffix handling code.
+       (do_fpa_dyadic, do_fpa_monadic, do_fpa_from_reg): Likewise.
+       (do_fpa_ldmstm): Type of access is now held in inst.instruction.
+       (build_arm_ops_hsh): New function.
+       (md_begin): Call it.  Don't build the ARM opcode directly.
+       (md_assemble): Simplify ARM instruction handling.
+
+2001-12-05  Arati Dikey <aratid@kpit.com>
+       * tc-sh.c (parse_at): Corrected incorrect op->type selection due
+       to missing 'else'.
+
+2001-12-04  Alexandre Oliva  <aoliva@redhat.com>
+
+       * config/tc-d10v.c (write_2_short): Don't skip dummy fixups, so
+       that we can tell which operand refers to the insn put in the L
+       container and mark it as such, so that the relocation type can be
+       adjusted.
+
+2001-12-04  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
+
+       * config/tc-mips.c (mips_cpreturn_offset): Better comment.
+       (load_register): Better error message. Cast away signedness
+       mismatches. Add casts needed for varargs.
+       (load_address): Replace checks of HAVE_64BIT_ADDRESS with dbl.
+       Remove superfluous casts.
+       (macro): Cast away signedness mismatches. Remove superfluous casts.
+       (s_cpload): Fix wrong comment.
+       (s_mips_weakext): Standardize output message.
+       (get_number): Likewise.
+
 2001-12-04  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
 
        * config/tc-mips.c (append_insn): Add jump address range overflow
        * config/tc-cris.c (md_apply_fix3): Cast value, not pointer, in
        val assignment.
 
+2001-11-16  Michael Snyder  <msnyder@redhat.com>
+
+       * stabs.c (stabs_generate_asm_lineno): Remember file and line number
+       from one call to the next, and eliminate consecutive duplicates
+       (thereby emitting only one line symbol per source line).
+       * dwarf2dbg.c (dwarf2_gen_line_info): Ditto.    
+
 2001-11-16  Alan Modra  <amodra@bigpond.net.au>
 
        * config/tc-m68k.c (md_apply_fix3): Change val back to a signed type.
        * config/tc-alpha.h (tc_adjust_symtab): Always define.
        (struct alpha_fix_tag): Name members less literal specific.
 
-Tue Sep  4 20:01:19 2001  Jeffrey A Law  (law@cygnus.com)
+2001-09-04  Jeffrey A Law  (law@cygnus.com)
 
        * tc-h8300.c (tc_gen_reloc): Give an error if we try to take the
        address of two symbols in different sections.
@@ -1198,8 +1349,8 @@ Tue Sep  4 20:01:19 2001  Jeffrey A Law  (law@cygnus.com)
        * config/tc-mips.c (mips_cpu_info): Add support for mipsisa32,
        5kc, and 20kc.  Clean up old entries.
 
-Fri Aug 31 12:05:13 2001  J"orn Rennecke <amylaar@redhat.com>
-                         Jeff Law <law@redhat.com>
+2001-08-31  J"orn Rennecke <amylaar@redhat.com>
+           Jeff Law <law@redhat.com>
 
        * config/tc-h8300.c (build_bytes): For OBJ_ELF, make relocation's
        offset match H8 ELF spec.
@@ -1213,14 +1364,14 @@ Fri Aug 31 12:05:13 2001  J"orn Rennecke <amylaar@redhat.com>
        (md_convert_frag): Update definiton based on BFD_ASSEMBLER.
        * tc-h8300.h (relocation mappings): Add.
 
-Thu Aug 30 12:05:13 2001  J"orn Rennecke <amylaar@redhat.com>
+2001-08-30  J"orn Rennecke <amylaar@redhat.com>
 
        * tc-h8300.c (tc_crawl_symbol_chain, tc_headers_hook): Don't
        define for BFD_ASSEMBLER.
        (tc_reloc_mangle): Likewise.
        (tc_gen_reloc): New function for BFD_ASSEMBLER.
 
-Wed Aug 29 12:49:58 2001  Jeffrey A Law  (law@cygnus.com)
+2001-08-29  Jeffrey A Law  (law@cygnus.com)
 
        * config/tc-h8300.c (h8300hmode): Record the machine type
        if BFD_ASSEMBLER is defined.
@@ -1232,7 +1383,7 @@ Wed Aug 29 12:49:58 2001  Jeffrey A Law  (law@cygnus.com)
        default from coff to elf.
        * configure: Regenerate.
 
-Wed Aug 29 12:05:13 2001  J"orn Rennecke <amylaar@redhat.com>
+2001-08-29  J"orn Rennecke <amylaar@redhat.com>
 
        * tc-h8300.c: If OBJ_ELF, include elf/h8.h, and define
        assorted coff relocations to the corresponding elf relocations.
@@ -1241,7 +1392,7 @@ Wed Aug 29 12:05:13 2001  J"orn Rennecke <amylaar@redhat.com>
        * configure.in: Add case for h8300-*-elf.
        * configure: Regenerate.
 
-Wed Aug 29 12:05:13 2001  J"orn Rennecke <amylaar@redhat.com>
+2001-08-29  J"orn Rennecke <amylaar@redhat.com>
 
        * doc/internals.texi (MD_PCREL_FROM_SECTION): Change
        documentation to reflect reality.
@@ -3024,7 +3175,7 @@ Wed Aug 29 12:05:13 2001  J"orn Rennecke <amylaar@redhat.com>
        operators.  Instead return operator size via new param num_chars.
        (expr): Use above to parse multi-char operators correctly.
 
-Mon Feb 12 17:45:50 CET 2001  Jan Hubicka  <jh@suse.cz>
+2001-02-12  Jan Hubicka  <jh@suse.cz>
 
        * config/tc-i386.c (i386_displacement): Fix handling of
        BFD_RELOC_X86_64_GOTPCREL.
@@ -3270,7 +3421,7 @@ Mon Feb 12 17:45:50 CET 2001  Jan Hubicka  <jh@suse.cz>
        and don't bother storing `m' for "ce" completer.  Tidy handling of
        'J' and 'K' operands to suit.  Handle '<' and '>' operands.
 
-Sun Jan 14 00:36:42 MET 2001  Jan Hubicka  <jh@suse.cz>
+2001-01-14  Jan Hubicka  <jh@suse.cz>
 
        * config/tc-i386.h (TARGET_MACH): New macro.
        (i386_mach): Declare.
@@ -3284,7 +3435,7 @@ Sun Jan 14 00:36:42 MET 2001  Jan Hubicka  <jh@suse.cz>
        character for all systems, not just GNU/Linux.  Make it explicit
        that `-k' doesn't affect code generation, just ELF flags.
 
-Sat Jan 13 01:47:35 MET 2001  Jan Hubicka <jh@suse.cz>
+2001-01-13  Jan Hubicka <jh@suse.cz>
 
        * config/tc-i386.c (md_assemble): Check cpu_flags even for nullary
        instructions.
@@ -3391,7 +3542,7 @@ Sat Jan 13 01:47:35 MET 2001  Jan Hubicka <jh@suse.cz>
        reports.
        * README: Likewise.
 
-Sat Jan  6 13:33:10 MET 2001  Jan Hubicka  <jh@suse.cz>
+2001-01-06  Jan Hubicka  <jh@suse.cz>
 
        * configure.in: Define DEFAULT_ARCH for i386.
        * config/tc-i386.c (md_assemble): Return after the error message;
@@ -3404,21 +3555,21 @@ Sat Jan  6 13:33:10 MET 2001  Jan Hubicka  <jh@suse.cz>
 
        * doc/c-i386.texi: Document x86_64 extensions.
 
-Fri Jan  5 13:26:42 MET 2001  Jan Hubicka  <jh@suse.cz>
+2001-01-05  Jan Hubicka  <jh@suse.cz>
 
        * config/tc-i386.c (md_assemble): Handle third byte of the opcode as prefix.
 
-Thu Jan  4 22:25:26 MET 2001  Jan Hubicka  <jh@suse.cz>
+2001-01-04  Jan Hubicka  <jh@suse.cz>
 
        * config/tc-i386.c (cpu_arch): Add Pentium4 and modify sledgehammer entry.
        * NEWS: Add note about Pentium4 support.
 
-Wed Jan  3 17:26:32 MET 2001  Jan Hubicka  <jh@suse.cz>
+2001-01-04  Jan Hubicka  <jh@suse.cz>
 
        * config/tc-i387.c (pi, pte, pt): Update.
        (type_names): Add new types.
 
-Wed Jan  3 16:26:52 MET 2001  Jan Hubicka  <jh@suse.cz>
+2001-01-03  Jan Hubicka  <jh@suse.cz>
 
        * config/tc-i386.h (CpuK6, CpuAthlon, CpuSledgehammer, CpuMMX, Cpu3dnow,
        CpuUnknown): Renumber
@@ -3444,7 +3595,7 @@ Wed Jan  3 16:26:52 MET 2001  Jan Hubicka  <jh@suse.cz>
        * doc/internals.texi (Relaxing with a table) <after relaxation>:
        Point out caveats with generating fixups for the opcode in a frag.
 
-Sat Dec 30 19:02:48 MET 2000  Jan Hubicka  <jh@suse.cz>
+2000-12-30  Jan Hubicka  <jh@suse.cz>
 
        * configure.in: Add support for x86_64 and x86_64-*-linux-gnu*
        * NEWS: Add x86_64.
@@ -3531,7 +3682,7 @@ Sat Dec 30 19:02:48 MET 2000  Jan Hubicka  <jh@suse.cz>
 
        * dwarf2dbg.c (dwarf2_finish): Remove #if BFD_ASSEMBLER.
 
-Wed Dec 20 14:21:22 MET 2000  Jan Hubicka  <jh@suse.cz>
+2000-12-20  Jan Hubicka  <jh@suse.cz>
 
        * config/tc-i386.h (i386_target_format): Define even for ELFs.
        (QWORD_MNEM_SUFFIX): New macro.
@@ -3659,7 +3810,7 @@ Wed Dec 20 14:21:22 MET 2000  Jan Hubicka  <jh@suse.cz>
        * config/tc-mips.c: Fix formatting.
        * doc/c-mips.texi: Fix formatting.
 
-Mon Dec 11 14:35:42 MET 2000  Jan hubicka  <jh@suse.cz>
+2000-12-11  Jan hubicka  <jh@suse.cz>
 
        * config/tc-i386.c (md_assemble): Refuse 's' and 'l' suffixes in the intel
        mode; convert 'd' suffix to 's' or 'l'; remove all DWORD_MNEM_SUFFIX
@@ -4947,7 +5098,7 @@ Mon Dec 11 14:35:42 MET 2000  Jan hubicka  <jh@suse.cz>
 
        * NEWS: Mention support for CRIS.
 
-Thu Aug 24 20:41:05 2000  Denis Chertykov  <denisc@overta.ru>
+2000-08-24  Denis Chertykov  <denisc@overta.ru>
 
        * config/tc-avr.h (TC_IMPLICIT_LCOMM_ALIGNMENT): New macros.
        Sets `.lcomm' alignment to zero.
@@ -5125,7 +5276,7 @@ Thu Aug 24 20:41:05 2000  Denis Chertykov  <denisc@overta.ru>
 
        * NEWS: Mention i860 support.
 
-Mon Aug 14 11:49:12 2000  Jeffrey A Law  (law@cygnus.com)
+2000-08-14  Jeffrey A Law  (law@cygnus.com)
 
        * config/tc-mn10300.h (DWARF2_LINE_MIN_INSN_LENGTH): Define.
 
@@ -5152,7 +5303,7 @@ Mon Aug 14 11:49:12 2000  Jeffrey A Law  (law@cygnus.com)
        * symbols.c: Fix formatting.
        * expr.c: Likewise.
 
-Wed Aug  9 16:28:21 EDT 2000   Diego Novillo <dnovillo@cygnus.com>
+2000-08-09  Diego Novillo <dnovillo@cygnus.com>
 
        * config/tc-i386.c (md_assemble): Skip suffix check if the opcode
        modifier has the IgnoreSize bit set.
@@ -5312,7 +5463,7 @@ Wed Aug  9 16:28:21 EDT 2000      Diego Novillo <dnovillo@cygnus.com>
        (md_show_usage): Show available options.
        * config/tc-hppa.h (WARN_COMMENTS): Define if TE_LINUX
 
-Thu Jul 27 11:25:01 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+2000-07-27  Andrew Cagney  <cagney@b1.cygnus.com>
 
        * config/tc-mn10300.c (md_convert_frag): Fix printfs.
        (tc_gen_reloc): Add cast when assigning bfd_abs_symbol to
@@ -5589,11 +5740,11 @@ Thu Jul 27 11:25:01 2000  Andrew Cagney  <cagney@b1.cygnus.com>
        * doc/internals.texi (CPU Backend): Describe
        TC_COFF_SECTION_DEFAULT_ATTRIBUTES.
 
-Thu Jul  6 17:20:58 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+2000-06-06  Andrew Cagney  <cagney@b1.cygnus.com>
 
        * as.c (parse_args): NULL terminate the long option list.
 
-Tue Jul  4 14:08:28 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+2000-06-04  Andrew Cagney  <cagney@b1.cygnus.com>
 
        * config/tc-d30v.h: Include "write.h" for fixS.
        (d30v_start_line, md_pcrel_from_section): Add function prototypes.
@@ -5653,7 +5804,7 @@ Tue Jul  4 14:08:28 2000  Andrew Cagney  <cagney@b1.cygnus.com>
        long section names are supported, set SEC_LINK_ONCE and
        SEC_LINK_DUPLICATES_DISCARD for a new .gnu.linkonce section.
 
-Thu Jun 29 21:30:00 2000  Hans-Peter Nilsson  <hp@axis.com>
+2000-06-29  Hans-Peter Nilsson  <hp@axis.com>
 
        * config/obj-aout.c (obj_aout_type): Do not ignore for undefined
        symbols; create them.
@@ -5850,7 +6001,7 @@ Thu Jun 29 21:30:00 2000  Hans-Peter Nilsson  <hp@axis.com>
        * macro.c (getstring): Make it possible to escape the quote
        character.
 
-Tue Jun 13 20:58:28 2000  Catherine Moore <clm@redhat.com>
+2000-06-13  Catherine Moore <clm@redhat.com>
 
        * config/tc-hppa.c (pa_export): Weak symbols can be global.
 
@@ -5913,11 +6064,11 @@ Tue Jun 13 20:58:28 2000  Catherine Moore <clm@redhat.com>
        * config/tc-ia64.c: Add missing prototypes.
        (generate_unwind_image): Cast argument to output_unw_records call.
 
-Wed Jun  7 22:44:14 2000  Denis Chertykov  <denisc@overta.ru>
+2000-06-07  Denis Chertykov  <denisc@overta.ru>
 
        * config/tc-avr.c (avr_operand): fix the formatting of the comment.
 
-Wed Jun  7 21:26:15 2000  Denis Chertykov  <denisc@overta.ru>
+2000-06-07  Denis Chertykov  <denisc@overta.ru>
 
        * config/tc-avr.c (AVR_ISA_???): moved to include/opcode/avr.h
        (REGISTER_P): likewise.
@@ -5997,7 +6148,7 @@ Wed Jun  7 21:26:15 2000  Denis Chertykov  <denisc@overta.ru>
        (md_parse_options, md_show_usage): Likewise.
        (md_apply_fix3): Optimize tail call into branch always if possible.
 
-Thu May  4 15:27:07 2000  Donald Lindsay  <dlindsay@cygnus.com>
+2000-05-04  Donald Lindsay  <dlindsay@cygnus.com>
 
        * config/tc-d10v.c (write_2_short, parallel_ok, md_assemble,
        d10v_cleanup) implement Mitsubishi's newly explained branch-packing
@@ -6104,7 +6255,7 @@ Thu May  4 15:27:07 2000  Donald Lindsay  <dlindsay@cygnus.com>
        (dot_vframe): Implement.
        (dot_vframesp, dot_vframepsp): New function.
 
-Tue May 23 00:57:05 2000  Hans-Peter Nilsson  <hp@axis.com>
+2000-05-23  Hans-Peter Nilsson  <hp@axis.com>
 
        * configure.in (i386-*-freebsd a.out entry): Quote properly.
        * configure: Regenerate.
@@ -6128,7 +6279,7 @@ Tue May 23 00:57:05 2000  Hans-Peter Nilsson  <hp@axis.com>
        (ia64_gen_real_reloc_type): Handle FUNC_PC_RELATIVE.
        (fix_insn): Handle all three 64-bit relocation types.
 
-Mon May 22 22:43:32 2000  Hans-Peter Nilsson  <hp@axis.com>
+2000-05-22  Hans-Peter Nilsson  <hp@axis.com>
 
        * obj.h (struct format_ops): New members begin, app_file,
        s_set_other, s_set_desc, s_get_type, s_set_type,
@@ -6191,7 +6342,7 @@ Mon May 22 22:43:32 2000  Hans-Peter Nilsson  <hp@axis.com>
        (md_estimate_size_before_relax): Ensure jumps to weak and
        externally visible symbols are relocatable.
 
-Sat May 20 16:41:55 2000  Hans-Peter Nilsson  <hp@axis.com>
+2000-05-20  Hans-Peter Nilsson  <hp@axis.com>
 
        * stabs.c (aout_process_stab): Make global.
        (s_desc): Add ATTRIBUTE_UNUSED to args as appropriate.
@@ -6216,7 +6367,7 @@ Sat May 20 16:41:55 2000  Hans-Peter Nilsson  <hp@axis.com>
        * config/tc-hppa.c (md_apply_fix): Mask out immediate bits of
        instruction to reflect change in re_assemble_*.
 
-Thu May 18 10:52:14 2000  Jeffrey A Law  (law@cygnus.com)
+2000-05-18  Jeffrey A Law  (law@cygnus.com)
 
        * configure.in (hppa-*-hpux11*): If the cpu is hppa*64*, then
        build PA64 ELF tools.
@@ -6434,11 +6585,11 @@ Thu May 18 10:52:14 2000  Jeffrey A Law  (law@cygnus.com)
        (pa_type_args): Conditionally declare symbol if OBJ_SOM.
        (pa_end_of_source): Return type is void.
 
-Mon May  1 08:54:23 2000  Catherine Moore  <clm@cygnus.com>
+2000-05-01  Catherine Moore  <clm@cygnus.com>
 
        * macro.c (macro_expand_body): Don't prepend macro number with zeroes.
 
-Mon May  1 14:19:39 2000  Denis Chertykov  <denisc@overta.ru>
+2000-05-01  Denis Chertykov  <denisc@overta.ru>
 
        * config/tc-avr.c: ATTRIBUTE_UNUSED added to the necessary places.
        More comments added.
@@ -6469,7 +6620,7 @@ Mon May  1 14:19:39 2000  Denis Chertykov  <denisc@overta.ru>
        TE_FreeBSD.
        (line_comment_chars): Set to '/' if TE_FreeBSD.
 
-Tue Apr 25 11:02:02 2000  Jeffrey A Law  (law@cygnus.com)
+2000-04-25  Jeffrey A Law  (law@cygnus.com)
 
        * configure.in: Configury support for PA64 (currently disabled).
        * configure: Rebuilt.
@@ -6495,7 +6646,7 @@ Tue Apr 25 11:02:02 2000  Jeffrey A Law  (law@cygnus.com)
 
        * config/obj-som.c: Terminate obj_pseudo_table.
 
-Mon Apr 24 15:21:11 2000  Clinton Popetz  <cpopetz@cygnus.com>
+2000-04-24  Clinton Popetz  <cpopetz@cygnus.com>
 
        * as.c (parse_args): Allow md_parse_option to override -a listing
        option.
@@ -6514,7 +6665,7 @@ Mon Apr 24 15:21:11 2000  Clinton Popetz  <cpopetz@cygnus.com>
        (TARGET_FORMAT): Move to function.
        (SUB_SEGMENT_ALIGN): Use ppc_subseg_align.
 
-Sun Apr 23 16:45:45 2000  Denis Chertykov  <denisc@overta.ru>
+2000-04-23  Denis Chertykov  <denisc@overta.ru>
 
        * config/tc-avr.c: New AVR_ISA_ defined.
        (md_assemble): Handle opcodes with optional operands (lpm,elpm).
@@ -6537,19 +6688,19 @@ Sun Apr 23 16:45:45 2000  Denis Chertykov  <denisc@overta.ru>
        * configure.in: Add NetBSD/sparc ELF and NetBSD/sparc64 support.
        * configure: Rebuilt.
 
-Fri Apr 21 14:29:43 2000  Jeffrey A Law  (law@cygnus.com)
-                         Jason Eckhardt  <jle@cygnus.com>
+2000-04-21  Jeffrey A Law  (law@cygnus.com)
+           Jason Eckhardt  <jle@cygnus.com>
 
        * config/tc-hppa.c (md_apply_fix): Handle new PA2.0 formats.
 
        * config/tc-hppa.c (CHECK_ALIGN): New macro.
        Added handling of new operand types l,y,&,fe,fE,fx.
 
-Fri Apr 21 13:20:53 2000  Richard Henderson  <rth@cygnus.com>
-                         David Mosberger  <davidm@hpl.hp.com>
-                         Timothy Wall <twall@cygnus.com>
-                         Andrew MacLeod  <amacleod@cygnus.com>
-                         Jim Wilson  <wilson@cygnus.com>
+2000-04-21  Richard Henderson  <rth@cygnus.com>
+           David Mosberger  <davidm@hpl.hp.com>
+           Timothy Wall <twall@cygnus.com>
+           Andrew MacLeod  <amacleod@cygnus.com>
+           Jim Wilson  <wilson@cygnus.com>
 
        * Makefile.am (CPU_TYPES): Add ia64.
        (TARGET_CPU_CFILES): Add config/tc-ia64.c.
@@ -6651,7 +6802,7 @@ Fri Apr 21 13:20:53 2000  Richard Henderson  <rth@cygnus.com>
 
        * doc/as.texinfo: Add M32R documentation.
 
-Fri Apr  7 15:56:57 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+2000-04-07  Andrew Cagney  <cagney@b1.cygnus.com>
 
        * configure.in (WARN_CFLAGS): Set to -W -Wall by default.  Add
        --enable-build-warnings option.
@@ -6667,12 +6818,12 @@ Fri Apr  7 15:56:57 2000  Andrew Cagney  <cagney@b1.cygnus.com>
        (arm_force_relocation): Force relocations for
        BFD_RELOC_{ARM|THUMB}_PCREL_BLX as well.
 
-Wed Apr  5 22:26:32 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
+2000-04-05  J"orn Rennecke <amylaar@cygnus.co.uk>
 
        * config/tc-sh.c (get_operands): There's no third operand if the
        first operand is an immediate.
 
-Wed Apr  5 22:07:19 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
+2000-04-05  J"orn Rennecke <amylaar@cygnus.co.uk>
 
        * config/tc-sh.c (immediate): Delete.
        (sh_operand_info): Add immediate member.
@@ -6690,11 +6841,11 @@ Wed Apr  5 22:07:19 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
        (md_apply_fix): Likewise.
        (tc_gen_reloc): Likewise.  Check for a pcrel BFD_RELOC_SH_LABEL.
 
-Wed Apr  5 06:35:45 2000  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
+2000-04-05  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
 
        * config/tc-sparc.c (sparc_ip): Avoid string pasting.
 
-Tue Apr  4 19:27:50 2000  Hans-Peter Nilsson  <hp@axis.com>
+2000-04-04  Hans-Peter Nilsson  <hp@axis.com>
 
        * internals.texi (CPU backend): Document
        TC_CHECK_ADJUSTED_BROKEN_DOT_WORD.
@@ -6734,7 +6885,7 @@ Tue Apr  4 19:27:50 2000  Hans-Peter Nilsson  <hp@axis.com>
 
        * config/tc-sparc.c (md_show_usage): Add a trailing newline.
 
-Mon Apr  3 13:56:03 2000  Hans-Peter Nilsson  <hp@axis.com>
+2000-04-03  Hans-Peter Nilsson  <hp@axis.com>
 
        * write.c (write_object_file) [! WORKING_DOT_WORD]: If defined,
        call TC_CHECK_ADJUSTED_BROKEN_DOT_WORD for each word after
@@ -6854,20 +7005,20 @@ Mon Apr  3 13:56:03 2000  Hans-Peter Nilsson  <hp@axis.com>
        that have a destingation >= 0x400000.
        Fix compile time warning messages.
 
-Thu Mar 16 23:45:16 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
+2000-03-16  J"orn Rennecke <amylaar@cygnus.co.uk>
 
        * config/tc-sh.c (md_begin): When encountering insn that are
        not supported by the current arch, only change the name if
        its contents are the same as prev_name.
        (get_specific): If the the architecture doesn't match, fail.
 
-Thu Mar 16 21:18:13 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
+2000-03-16  J"orn Rennecke <amylaar@cygnus.co.uk>
 
        * config/tc-sh.c (IDENT_CHAR): Define.
        (parse_reg): Use it instead of isalnum.  Put r[0..7]_bank operand
        matching back where it came from.
 
-Thu Mar 16 20:58:10 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
+2000-03-16  J"orn Rennecke <amylaar@cygnus.co.uk>
 
        * config/tc-sh.c (md_show_usage): Add description of -dsp.
 
@@ -6880,12 +7031,12 @@ Thu Mar 16 20:58:10 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
 
        * config/tc-h8300.c: Add ATTRIBUTE_UNUSED as appropriate.
 
-Mon Mar 13 22:02:59 2000  Hans-Peter Nilsson  <hp@axis.se>
+2000-03-13  Hans-Peter Nilsson  <hp@axis.se>
 
        * expr.c (operand) [case 'f']: When testing if '0f' can start a
        floating-point-number, make sure 'f' is in FLT_CHARS.
 
-Sat Mar 11 00:01:39 2000  Hans-Peter Nilsson  <hp@axis.se>
+2000-03-11  Hans-Peter Nilsson  <hp@axis.se>
 
        * read.c (TC_IMPLICIT_LCOMM_ALIGNMENT): New default-definition.
        (s_lcomm_internal): Use it.
@@ -7180,7 +7331,7 @@ Sat Mar 11 00:01:39 2000  Hans-Peter Nilsson  <hp@axis.se>
        * config/tc-d10v.c (find_opcode): Add a symbol's value to
        the computed frag offset, rather than overwriting it.
 
-Thu Feb 17 00:11:08 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
+2000-02-17  J"orn Rennecke <amylaar@cygnus.co.uk>
 
        * config/tc-sh.c ("elf/sh.h"): Include.
        (sh_dsp, valid_arch, reg_x, reg_y, reg_efg): New static variables.
@@ -7199,7 +7350,7 @@ Thu Feb 17 00:11:08 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
        * config/tc-sh.h (elf_tc_final_processing): Define.
        (sh_elf_final_processing): Declare.
 
-Fri Feb 11 14:21:51 2000  Jeffrey A Law  (law@cygnus.com)
+2000-02-11  Jeffrey A Law  (law@cygnus.com)
 
        * config/tc-hppa.c (pa_build_unwind_subspace): Use subseg_new to create
        the unwinder subspace.  Save the current seg/subseg before creating
This page took 0.032657 seconds and 4 git commands to generate.