mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 10:35:12 +08:00
Fix time ordering of entries
This commit is contained in:
parent
958b5f013a
commit
a47cf56716
106
gas/ChangeLog
106
gas/ChangeLog
@ -1,4 +1,4 @@
|
||||
2000-08-03 Richard Henderson <rth@cygnus.com>
|
||||
2000-09-03 Richard Henderson <rth@cygnus.com>
|
||||
|
||||
* config/tc-ia64.c (emit_one_bundle): Stop collecting insns
|
||||
for template selection when a label is needed.
|
||||
@ -224,7 +224,7 @@ Thu Aug 24 20:41:05 2000 Denis Chertykov <denisc@overta.ru>
|
||||
* config/tc-arm.c (do_bx): Warn about "bx px" not being very
|
||||
useful.
|
||||
|
||||
2000-08-14 Will Cohen <wcohen@redhat.com>
|
||||
2000-08-15 Will Cohen <wcohen@redhat.com>
|
||||
|
||||
* config/tc-sh.h (DWARF2_LINE_MIN_INSN_LENGTH): Defined.
|
||||
|
||||
@ -303,6 +303,11 @@ Wed Aug 9 16:28:21 EDT 2000 Diego Novillo <dnovillo@cygnus.com>
|
||||
* configure.in: Use elf on Unixware 7 (i586-sco-sysv5uw7.1.0)
|
||||
* configure: Regenerate.
|
||||
|
||||
2000-08-09 Kazu Hirata <kazu@hxi.com>
|
||||
|
||||
* hash.c: Fix formatting.
|
||||
* gasp.c: Likewise.
|
||||
|
||||
2000-08-08 Jason Eckhardt <jle@cygnus.com>
|
||||
|
||||
* config/tc-i860.h: Rework completely for BFD_ASSEMBLER.
|
||||
@ -329,11 +334,6 @@ Wed Aug 9 16:28:21 EDT 2000 Diego Novillo <dnovillo@cygnus.com>
|
||||
(md_apply_fix3): New function.
|
||||
(tc_gen_reloc): New function.
|
||||
|
||||
2000-08-09 Kazu Hirata <kazu@hxi.com>
|
||||
|
||||
* hash.c: Fix formatting.
|
||||
* gasp.c: Likewise.
|
||||
|
||||
2000-08-08 Stephane Carrez <Stephane.Carrez@worldnet.fr>
|
||||
|
||||
* config/tc-m68hc11.c (build_jump_insn): Make sure the
|
||||
@ -355,14 +355,7 @@ Wed Aug 9 16:28:21 EDT 2000 Diego Novillo <dnovillo@cygnus.com>
|
||||
* config/atof-ieee.c: Fix formatting.
|
||||
* config/atof-tahoe.c: Likewise.
|
||||
|
||||
2000-07-29 Marek Michalkiewicz <marekm@linux.org.pl>
|
||||
|
||||
* config/tc-avr.c: Use PARAMS macro in function declarations.
|
||||
Don't declare md_pcrel_from_section (already in tc-avr.h).
|
||||
(avr_operands): Use AVR_UNDEF_P and AVR_SKIP_P macros.
|
||||
(avr_operand): Don't set (unsigned) op_mask to -1.
|
||||
|
||||
2000-08-04 Nick Clifton <nickc@cygnus.com>
|
||||
2000-08-06 Nick Clifton <nickc@cygnus.com>
|
||||
|
||||
* config/tc-sparc.c (md_begin): Fix typo in recent formatting
|
||||
work.
|
||||
@ -392,7 +385,7 @@ Wed Aug 9 16:28:21 EDT 2000 Diego Novillo <dnovillo@cygnus.com>
|
||||
|
||||
2000-08-01 Nick Clifton <nickc@cygnus.com>
|
||||
|
||||
* config/tc-arm.c (do_mrs): Fix skip fo 'cpsr_all' flag.
|
||||
* config/tc-arm.c (do_mrs): Fix skip of 'cpsr_all' flag.
|
||||
Undo some formatting fixes.
|
||||
|
||||
2000-08-01 Kazu Hirata <kazu@hxi.com>
|
||||
@ -433,6 +426,13 @@ Wed Aug 9 16:28:21 EDT 2000 Diego Novillo <dnovillo@cygnus.com>
|
||||
|
||||
* doc/c-m68k.texi: Document new command line option.
|
||||
|
||||
2000-07-29 Marek Michalkiewicz <marekm@linux.org.pl>
|
||||
|
||||
* config/tc-avr.c: Use PARAMS macro in function declarations.
|
||||
Don't declare md_pcrel_from_section (already in tc-avr.h).
|
||||
(avr_operands): Use AVR_UNDEF_P and AVR_SKIP_P macros.
|
||||
(avr_operand): Don't set (unsigned) op_mask to -1.
|
||||
|
||||
2000-07-28 Jason Eckhardt <jle@cygnus.com>
|
||||
|
||||
* configure.in: Add bits for i860-stardent-{sysv4, elf}*.
|
||||
@ -806,8 +806,9 @@ Thu Jun 29 21:30:00 2000 Hans-Peter Nilsson <hp@axis.com>
|
||||
2000-06-27 Aldy Hernandez <aldyh@redhat.com>
|
||||
|
||||
* config/tc-mips.c (mips_ip): handle "(foo-.-4)" type of
|
||||
expressions. Ignore the problem when handling 16 bit immediates,
|
||||
because the assembler will take care of the relocation later.
|
||||
expressions. Ignore the problem when handling 16 bit signed
|
||||
immediates, because the assembler will take care of the relocation
|
||||
later.
|
||||
|
||||
2000-06-27 Nick Clifton <nickc@cygnus.com>
|
||||
|
||||
@ -870,7 +871,8 @@ Thu Jun 29 21:30:00 2000 Hans-Peter Nilsson <hp@axis.com>
|
||||
2000-06-23 matthew green <mrg@redhat.com>
|
||||
|
||||
* expr.c (operand): Do not as_bad() if RELAX_PAREN_GROUPING is
|
||||
defined. Fix error message for `[' grouping.
|
||||
defined. Fix error message and double increment of
|
||||
input_line_pointer for `[' grouping.
|
||||
|
||||
2000-06-22 Kazu Hirata <kazu@hxi.com>
|
||||
|
||||
@ -1589,18 +1591,6 @@ Mon May 1 14:19:39 2000 Denis Chertykov <denisc@overta.ru>
|
||||
(md_assemble): use skip_space () before parsing instruction
|
||||
operands.
|
||||
|
||||
Sun Apr 23 16:45:45 2000 Denis Chertykov <denisc@overta.ru>
|
||||
|
||||
* config/tc-avr.c: New AVR_ISA_ defined.
|
||||
(md_assemble): Handle opcodes with optional operands (lpm,elpm).
|
||||
(avr_operand): Handle 'a', 'v' and 'z' constraint letters needed
|
||||
for `fmul', `movw' and `lpm R,Z' instructions.
|
||||
(avr_operands): Warn if current opcode is a two-word instruction
|
||||
and previous opcode was cpse/sbic/sbis/sbrc/sbrs.
|
||||
(avr_opcodes): New commands added.
|
||||
(REGISTER_P): Check 'a' and 'v' constraint letters.
|
||||
(mcu_types): New MCU added.
|
||||
|
||||
2000-05-01 Alan Modra <alan@linuxcare.com.au>
|
||||
|
||||
* configure.in: Set bfd_gas=yes on i386-*-pe and i386-*-nt* to
|
||||
@ -1612,25 +1602,6 @@ Sun Apr 23 16:45:45 2000 Denis Chertykov <denisc@overta.ru>
|
||||
|
||||
* as.h: Correctly check GCC version.
|
||||
|
||||
Mon Apr 24 15:21:11 2000 Clinton Popetz <cpopetz@cygnus.com>
|
||||
|
||||
* as.c (parse_args): Allow md_parse_option to override -a listing
|
||||
option.
|
||||
* config/obj-coff.c (add_lineno): Change type of offset parameter
|
||||
from "int" to "bfd_vma."
|
||||
* config/tc-ppc.c (md_pseudo_table): Add "llong" and "machine."
|
||||
(ppc_mach, ppc_subseg_align, ppc_target_format): New.
|
||||
(ppc_change_csect): Align correctly for XCOFF64.
|
||||
(ppc_machine): New function, which discards "ppc_machine" line.
|
||||
(ppc_tc): Cons for 8 when code is 64 bit.
|
||||
(md_apply_fix3): Don't check operand->insert. Handle 64 bit
|
||||
relocations.
|
||||
(md_parse_option): Handle -a64 and -a32.
|
||||
(ppc_xcoff64): New.
|
||||
* config/tc-ppc.h (TARGET_MACH): Define.
|
||||
(TARGET_FORMAT): Move to function.
|
||||
(SUB_SEGMENT_ALIGN): Use ppc_subseg_align.
|
||||
|
||||
2000-04-26 David O'Brien <obrien@FreeBSD.org>
|
||||
|
||||
* doc/as.1: Fix unbalanced brackets.
|
||||
@ -1665,6 +1636,37 @@ Tue Apr 25 11:02:02 2000 Jeffrey A Law (law@cygnus.com)
|
||||
|
||||
* obj-som.c: Terminate obj_pseudo_table.
|
||||
|
||||
Mon Apr 24 15:21:11 2000 Clinton Popetz <cpopetz@cygnus.com>
|
||||
|
||||
* as.c (parse_args): Allow md_parse_option to override -a listing
|
||||
option.
|
||||
* config/obj-coff.c (add_lineno): Change type of offset parameter
|
||||
from "int" to "bfd_vma."
|
||||
* config/tc-ppc.c (md_pseudo_table): Add "llong" and "machine."
|
||||
(ppc_mach, ppc_subseg_align, ppc_target_format): New.
|
||||
(ppc_change_csect): Align correctly for XCOFF64.
|
||||
(ppc_machine): New function, which discards "ppc_machine" line.
|
||||
(ppc_tc): Cons for 8 when code is 64 bit.
|
||||
(md_apply_fix3): Don't check operand->insert. Handle 64 bit
|
||||
relocations.
|
||||
(md_parse_option): Handle -a64 and -a32.
|
||||
(ppc_xcoff64): New.
|
||||
* config/tc-ppc.h (TARGET_MACH): Define.
|
||||
(TARGET_FORMAT): Move to function.
|
||||
(SUB_SEGMENT_ALIGN): Use ppc_subseg_align.
|
||||
|
||||
Sun Apr 23 16:45:45 2000 Denis Chertykov <denisc@overta.ru>
|
||||
|
||||
* config/tc-avr.c: New AVR_ISA_ defined.
|
||||
(md_assemble): Handle opcodes with optional operands (lpm,elpm).
|
||||
(avr_operand): Handle 'a', 'v' and 'z' constraint letters needed
|
||||
for `fmul', `movw' and `lpm R,Z' instructions.
|
||||
(avr_operands): Warn if current opcode is a two-word instruction
|
||||
and previous opcode was cpse/sbic/sbis/sbrc/sbrs.
|
||||
(avr_opcodes): New commands added.
|
||||
(REGISTER_P): Check 'a' and 'v' constraint letters.
|
||||
(mcu_types): New MCU added.
|
||||
|
||||
2000-04-22 Timothy Wall <twall@cygnus.com>
|
||||
|
||||
* config/tc-ia64.c (pseudo_func[]): Add new "nat" entry equivalent
|
||||
@ -2053,6 +2055,7 @@ Sat Mar 11 00:01:39 2000 Hans-Peter Nilsson <hp@axis.se>
|
||||
|
||||
* config/tc-m32r.c (m32r_fix_adjustable): Look up the
|
||||
relocation type based on the entry in the fixup structure.
|
||||
Put S_IS_EXTERN processing back in.
|
||||
|
||||
2000-03-08 H.J. Lu (hjl@gnu.org)
|
||||
|
||||
@ -2278,6 +2281,9 @@ Sat Mar 11 00:01:39 2000 Hans-Peter Nilsson <hp@axis.se>
|
||||
(md_longopts): Add "-mgp32" and "-mgp64".
|
||||
(md_parse_option): Add OPTION_GP32 and OPTION_GP64.
|
||||
|
||||
(OPTION_M7900): Change offset
|
||||
(OPTION_NO_M7900): Ditto.
|
||||
|
||||
2000-02-22 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
|
||||
|
||||
* config/obj-coff.c (add_lineno): Accept non-positive lineno with
|
||||
|
@ -4,14 +4,6 @@
|
||||
top level.
|
||||
* aclocal.m4, configure: Rebuilt.
|
||||
|
||||
2000-08-28 Mark Hatle <mhatle@mvista.com>
|
||||
|
||||
* ppc-opc.c: Add XTLB macro for a few PPC 4xx extended mnemonics.
|
||||
(powerpc_opcodes): Add table entries for PPC 405 instructions.
|
||||
Changed rfci, icbt, mfdcr, dccci, mtdcr, iccci from PPC to PPC403
|
||||
instructions. Added extended mnemonic mftbl as defined in the
|
||||
405GP manual for all PPCs.
|
||||
|
||||
2000-08-30 Kazu Hirata <kazu@hxi.com>
|
||||
|
||||
* tic80-dis.c: Fix formatting.
|
||||
@ -20,6 +12,14 @@
|
||||
|
||||
* w65-dis.c: Fix formatting.
|
||||
|
||||
2000-08-28 Mark Hatle <mhatle@mvista.com>
|
||||
|
||||
* ppc-opc.c: Add XTLB macro for a few PPC 4xx extended mnemonics.
|
||||
(powerpc_opcodes): Add table entries for PPC 405 instructions.
|
||||
Changed rfci, icbt, mfdcr, dccci, mtdcr, iccci from PPC to PPC403
|
||||
instructions. Added extended mnemonic mftbl as defined in the
|
||||
405GP manual for all PPCs.
|
||||
|
||||
2000-08-28 Jim Wilson <wilson@cygnus.com>
|
||||
|
||||
* ia64-dis.c (print_insn_ia64): Add failed label after ia64_free_opcode
|
||||
@ -90,6 +90,15 @@
|
||||
* ia64-dis.c (print_insn_ia64): Get byte skip count correct
|
||||
for MLI templates. Handle IA64_OPND_TGT64.
|
||||
|
||||
2000-08-04 Ben Elliston <bje@redhat.com>
|
||||
|
||||
* cgen-dis.in, cgen-asm.in, cgen-ibld.in: New files.
|
||||
* cgen.sh: Likewise.
|
||||
|
||||
2000-08-02 Jim Wilson <wilson@cygnus.com>
|
||||
|
||||
* ia64-dis.c (print_insn_ia64): Call ia64_free_opcode at end.
|
||||
|
||||
2000-07-29 Marek Michalkiewicz <marekm@linux.org.pl>
|
||||
|
||||
* avr-dis.c (avr_operand): Use PARAMS macro in declaration.
|
||||
@ -102,15 +111,6 @@
|
||||
as ld/st. Check avr_operand () return value, handle invalid
|
||||
combinations of operands like unknown opcodes.
|
||||
|
||||
2000-08-04 Ben Elliston <bje@redhat.com>
|
||||
|
||||
* cgen-dis.in, cgen-asm.in, cgen-ibld.in: New files.
|
||||
* cgen.sh: Likewise.
|
||||
|
||||
2000-08-02 Jim Wilson <wilson@cygnus.com>
|
||||
|
||||
* ia64-dis.c (print_insn_ia64): Call ia64_free_opcode at end.
|
||||
|
||||
2000-07-28 Ben Elliston <bje@redhat.com>
|
||||
|
||||
* Makefile.am (CGEN, CGENDEPS, CGENDIR, CGENFLAGS): New.
|
||||
@ -370,6 +370,17 @@ Fri May 19 12:29:27 EDT 2000 Diego Novillo <dnovillo@redhat.com>
|
||||
(print_insn_little_powerpc): Likewise.
|
||||
(print_insn_powerpc): Prepend 'v' when printing vector registers.
|
||||
|
||||
Mon Apr 24 15:21:35 2000 Clinton Popetz <cpopetz@cygnus.com>
|
||||
|
||||
* configure.in: Add bfd_powerpc_64_arch.
|
||||
* disassemble.c (disassembler): Use print_insn_big_powerpc for
|
||||
64 bit code.
|
||||
|
||||
2000-04-24 Nick Clifton <nickc@cygnus.com>
|
||||
|
||||
* fr30-desc.c (fr30_cgen_cpu_open): Initialise signed_overflow
|
||||
field.
|
||||
|
||||
Sun Apr 23 17:54:14 2000 Denis Chertykov <denisc@overta.ru>
|
||||
|
||||
* avr-dis.c (reg_fmul_d): New. Extract destination register from
|
||||
@ -382,17 +393,6 @@ Sun Apr 23 17:54:14 2000 Denis Chertykov <denisc@overta.ru>
|
||||
(print_insn_avr): Handle MOVW, MULS, MULSU, FMUL, FMULS, FMULSU,
|
||||
EICALL, EIJMP, LPM r,Z, ELPM r,Z, SPM, ESPM instructions.
|
||||
|
||||
Mon Apr 24 15:21:35 2000 Clinton Popetz <cpopetz@cygnus.com>
|
||||
|
||||
* configure.in: Add bfd_powerpc_64_arch.
|
||||
* disassemble.c (disassembler): Use print_insn_big_powerpc for
|
||||
64 bit code.
|
||||
|
||||
2000-04-24 Nick Clifton <nickc@cygnus.com>
|
||||
|
||||
* fr30-desc.c (fr30_cgen_cpu_open): Initialise signed_overflow
|
||||
field.
|
||||
|
||||
2000-04-22 Timothy Wall <twall@cygnus.com>
|
||||
|
||||
* ia64-gen.c (general): Add an ordered table of primary
|
||||
|
Loading…
Reference in New Issue
Block a user