binutils-gdb/gas/config
Victor Do Nascimento a4822788d7 aarch64: Improve naming conventions for A and R-profile architecture
Historically, flags and variables relating to architectural revisions
for the A-profile architecture omitted the trailing `A' such that, for
example, assembling for `-march=armv8.4-a' set the `AARCH64_ARCH_V8_4'
flag in the assembler.

This leads to some ambiguity, since Binutils also targets the
R-profile Arm architecture.  Therefore, it seems prudent to have
everything associated with the A-profile cores end in `A' and likewise
`R' for the R-profile.  Referring back to the example above, the flag
set for `-march=armv8.4-a' is better characterized if labeled
`AARCH64_ARCH_V8_4A'.

The only exception to the rule of appending `A' to variables is found
in the handling of the `AARCH64_FEATURE_V8' macro, as it is the
baseline from which ALL processors derive and should therefore be left
unchanged.

In reflecting the `ARM' architectural nomenclature choices, where we
have `ARM_ARCH_V8A' and `ARM_ARCH_V8R', the choice is made to not have
an underscore separating the numerical revision number and the
A/R-profile indicator suffix.  This has meant that renaming of
R-profile related flags and variables was warranted, thus going from
`.*_[vV]8_[rR]' to `.*_[vV]8[rR]'.

Finally, this is more in line with conventions within GCC and adds consistency
across the toolchain.

gas/ChangeLog:
	* gas/config/tc-aarch64.c:
	(aarch64_cpus): Reference to arch feature macros updated.
	(aarch64_archs): Likewise.

include/ChangeLog:
	* include/opcode/aarch64.h:
	(AARCH64_FEATURE_V8A): Updated name: V8_A -> V8A.
	(AARCH64_FEATURE_V8_1A): A-suffix added.
	(AARCH64_FEATURE_V8_2A): Likewise.
	(AARCH64_FEATURE_V8_3A): Likewise.
	(AARCH64_FEATURE_V8_4A): Likewise.
	(AARCH64_FEATURE_V8_5A): Likewise.
	(AARCH64_FEATURE_V8_6A): Likewise.
	(AARCH64_FEATURE_V8_7A): Likewise.
	(AARCH64_FEATURE_V8_8A):Likewise.
	(AARCH64_FEATURE_V9A): Likewise.
	(AARCH64_FEATURE_V8R): Updated name: V8_R -> V8R.
	(AARCH64_ARCH_V8A_FEATURES): Updated name: V8_A -> V8A.
	(AARCH64_ARCH_V8_1A_FEATURES): A-suffix added.
	(AARCH64_ARCH_V8_2A_FEATURES): Likewise.
	(AARCH64_ARCH_V8_3A_FEATURES): Likewise.
	(AARCH64_ARCH_V8_4A_FEATURES): Likewise.
	(AARCH64_ARCH_V8_5A_FEATURES): Likewise.
	(AARCH64_ARCH_V8_6A_FEATURES): Likewise.
	(AARCH64_ARCH_V8_7A_FEATURES): Likewise.
	(AARCH64_ARCH_V8_8A_FEATURES): Likewise.
	(AARCH64_ARCH_V9A_FEATURES): Likewise.
	(AARCH64_ARCH_V9_1A_FEATURES): Likewise.
	(AARCH64_ARCH_V9_2A_FEATURES): Likewise.
	(AARCH64_ARCH_V9_3A_FEATURES): Likewise.
	(AARCH64_ARCH_V8A): Updated name: V8_A -> V8A.
	(AARCH64_ARCH_V8_1A): A-suffix added.
	(AARCH64_ARCH_V8_2A): Likewise.
	(AARCH64_ARCH_V8_3A): Likewise.
	(AARCH64_ARCH_V8_4A): Likewise.
	(AARCH64_ARCH_V8_5A): Likewise.
	(AARCH64_ARCH_V8_6A): Likewise.
	(AARCH64_ARCH_V8_7A): Likewise.
	(AARCH64_ARCH_V8_8A): Likewise.
	(AARCH64_ARCH_V9A): Likewise.
	(AARCH64_ARCH_V9_1A): Likewise.
	(AARCH64_ARCH_V9_2A): Likewise.
	(AARCH64_ARCH_V9_3A): Likewise.
	(AARCH64_ARCH_V8_R): Updated name: V8_R -> V8R.

opcodes/ChangeLog:
	* opcodes/aarch64-opc.c (SR_V8A): Updated name: V8_A -> V8A.
	(SR_V8_1A): A-suffix added.
	(SR_V8_2A): Likewise.
	(SR_V8_3A): Likewise.
	(SR_V8_4A): Likewise.
	(SR_V8_6A): Likewise.
	(SR_V8_7A): Likewise.
	(SR_V8_8A): Likewise.
	(aarch64_sys_regs): Reference to arch feature macros updated.
	(aarch64_pstatefields): Reference to arch feature macros updated.
	(aarch64_sys_ins_reg_supported_p): Reference to arch feature macros
	updated.
	* opcodes/aarch64-tbl.h:
	(aarch64_feature_v8_2a): a-suffix added.
	(aarch64_feature_v8_3a): Likewise.
	(aarch64_feature_fp_v8_3a): Likewise.
	(aarch64_feature_v8_4a): Likewise.
	(aarch64_feature_fp_16_v8_2a): Likewise.
	(aarch64_feature_v8_5a): Likewise.
	(aarch64_feature_v8_6a): Likewise.
	(aarch64_feature_v8_7a): Likewise.
	(aarch64_feature_v8r): Updated name: v8_r-> v8r.
	(ARMV8R): Updated name: V8_R-> V8R.
	(ARMV8_2A): A-suffix added.
	(ARMV8_3A): Likewise.
	(FP_V8_3A): Likewise.
	(ARMV8_4A): Likewise.
	(FP_F16_V8_2A): Likewise.
	(ARMV8_5): Likewise.
	(ARMV8_6A): Likewise.
	(ARMV8_6A_SVE): Likewise.
	(ARMV8_7A): Likewise.
	(V8_2A_INSN): `A' added to macro symbol.
	(V8_3A_INSN): Likewise.
	(V8_4A_INSN): Likewise.
	(FP16_V8_2A_INSN): Likewise.
	(V8_5A_INSN): Likewise.
	(V8_6A_INSN): Likewise.
	(V8_7A_INSN): Likewise.
	(V8R_INSN): Updated name: V8_R-> V8R.
2023-08-22 16:46:33 +01:00
..
atof-ieee.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
atof-vax.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
bfin-aux.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
bfin-defs.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
bfin-lex-wrapper.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
bfin-lex.l Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
bfin-parse.y Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
e-crisaout.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
e-criself.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
e-i386aout.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
e-i386coff.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
e-i386elf.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
e-mipself.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
itbl-mips.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
kvx-parse.c kvx: New port. 2023-08-16 14:22:54 +01:00
kvx-parse.h kvx: New port. 2023-08-16 14:22:54 +01:00
loongarch-lex-wrapper.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
loongarch-lex.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
loongarch-lex.l Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
loongarch-parse.y Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
m68k-parse.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
m68k-parse.y Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
obj-aout.c Rename bfd_bread and bfd_bwrite 2023-08-09 08:48:09 +09:30
obj-aout.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
obj-coff-seh.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
obj-coff-seh.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
obj-coff.c Remove unused args from bfd_make_debug_symbol 2023-05-03 15:53:29 +09:30
obj-coff.h Use stdint types in coff internal_auxent 2023-03-27 21:58:46 +10:30
obj-ecoff.c ecoff find_nearest_line and final link leaks 2023-06-09 12:56:12 +09:30
obj-ecoff.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
obj-elf.c gas: purge md_elf_section_word() 2023-08-11 10:05:32 +02:00
obj-elf.h obj-elf.h BYTES_IN_WORD 2023-02-02 08:48:58 +10:30
obj-evax.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
obj-evax.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
obj-fdpicelf.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
obj-fdpicelf.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
obj-macho.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
obj-macho.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
obj-multi.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
obj-multi.h gas obj_end 2023-02-02 08:48:29 +10:30
obj-som.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
obj-som.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
rl78-defs.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
rl78-parse.y Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
rx-defs.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
rx-parse.y Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-aarch64.c aarch64: Improve naming conventions for A and R-profile architecture 2023-08-22 16:46:33 +01:00
tc-aarch64.h gas: use "stack trace" instead of "unwind" for SFrame 2023-02-02 00:49:07 -08:00
tc-alpha.c gas: equates of registers 2023-05-12 08:55:48 +02:00
tc-alpha.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-arc.c Revert "2.41 Release sources" 2023-08-02 12:06:23 +01:00
tc-arc.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-arm.c arm: sanitizer stringop-overflow 2023-08-03 21:19:57 +09:30
tc-arm.h Don't define COFF_MAGIC 2023-05-30 12:51:39 +09:30
tc-avr.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-avr.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-bfin.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-bfin.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-bpf.c bpf: gas: consolidate handling of immediate overflows 2023-08-17 09:41:43 +02:00
tc-bpf.h Revert "2.41 Release sources" 2023-08-02 12:06:23 +01:00
tc-cr16.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-cr16.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-cris.c Use __func__ rather than __FUNCTION__ 2023-01-12 17:20:21 +10:30
tc-cris.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-crx.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-crx.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-csky.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-csky.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-d10v.c Revert "2.41 Release sources" 2023-08-02 12:06:23 +01:00
tc-d10v.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-d30v.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-d30v.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-dlx.c gas: equates of registers 2023-05-12 08:55:48 +02:00
tc-dlx.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-epiphany.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-epiphany.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-fr30.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-fr30.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-frv.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-frv.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-ft32.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-ft32.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-generic.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-generic.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-h8300.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-h8300.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-hppa.c gas: invoke md_optimize_expr() also for unary expressions 2023-05-19 09:16:29 +02:00
tc-hppa.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-i386-intel.c x86/Intel: address quoted-symbol related FIXMEs 2023-05-23 09:01:31 +02:00
tc-i386.c x86: remove indirection from bx[] and di_si[] 2023-08-18 08:58:15 +02:00
tc-i386.h gas: purge md_elf_section_word() 2023-08-11 10:05:32 +02:00
tc-ia64.c gas: equates of registers 2023-05-12 08:55:48 +02:00
tc-ia64.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-ip2k.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-ip2k.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-iq2000.c gas macro memory leaks 2023-01-27 15:38:52 +10:30
tc-iq2000.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-kvx.c kvx: New port. 2023-08-16 14:22:54 +01:00
tc-kvx.h kvx: New port. 2023-08-16 14:22:54 +01:00
tc-lm32.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-lm32.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-loongarch.c LoongArch: gas: Fix shared builds 2023-07-03 09:00:33 +08:00
tc-loongarch.h LoongArch: gas: Relocations simplification when -mno-relax 2023-06-12 09:30:48 +08:00
tc-m32c.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-m32c.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-m32r.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-m32r.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-m68hc11.c Revert "2.41 Release sources" 2023-08-02 12:06:23 +01:00
tc-m68hc11.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-m68k.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-m68k.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-m68851.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-mcore.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-mcore.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-mep.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-mep.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-metag.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-metag.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-microblaze.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-microblaze.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-mips.c Add rotation instructions to MIPS Allegrex CPU 2023-06-15 04:45:03 +01:00
tc-mips.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-mmix.c gas: equates of registers 2023-05-12 08:55:48 +02:00
tc-mmix.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-mn10200.c gas: equates of registers 2023-05-12 08:55:48 +02:00
tc-mn10200.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-mn10300.c gas: equates of registers 2023-05-12 08:55:48 +02:00
tc-mn10300.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-moxie.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-moxie.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-msp430.c gas: equates of registers 2023-05-12 08:55:48 +02:00
tc-msp430.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-mt.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-mt.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-nds32.c gas: equates of registers 2023-05-12 08:55:48 +02:00
tc-nds32.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-nios2.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-nios2.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-ns32k.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-ns32k.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-or1k.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-or1k.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-pdp11.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-pdp11.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-pj.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-pj.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-ppc.c PPC: remove indirection from struct pd_reg 2023-08-15 08:34:13 +02:00
tc-ppc.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-pru.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-pru.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-riscv.c RISC-V: remove indirection from register tables 2023-08-15 08:34:56 +02:00
tc-riscv.h RISC-V: adjust logic to avoid register name symbols 2023-04-25 11:19:18 +02:00
tc-rl78.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-rl78.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-rx.c gas .include and .incbin 2023-03-14 12:14:32 +10:30
tc-rx.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-s12z.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-s12z.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-s390.c Revert "2.41 Release sources" 2023-08-02 12:06:23 +01:00
tc-s390.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-score7.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-score.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-score.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-sh.c Revert "2.41 Release sources" 2023-08-02 12:06:23 +01:00
tc-sh.h Don't define COFF_MAGIC 2023-05-30 12:51:39 +09:30
tc-sparc.c gas: tc-sparc.c: undo spurious change in 5be1b78727 2023-08-17 10:03:54 +02:00
tc-sparc.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-spu.c gas: equates of registers 2023-05-12 08:55:48 +02:00
tc-spu.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-tic4x.c gas: equates of registers 2023-05-12 08:55:48 +02:00
tc-tic4x.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-tic6x.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-tic6x.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-tic30.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-tic30.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-tic54x.c Rename bfd_bread and bfd_bwrite 2023-08-09 08:48:09 +09:30
tc-tic54x.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-tilegx.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-tilegx.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-tilepro.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-tilepro.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-v850.c gas: equates of registers 2023-05-12 08:55:48 +02:00
tc-v850.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-vax.c Re: PR30715, VAX: md_create_long_jump 2023-08-14 17:07:19 +09:30
tc-vax.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-visium.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-visium.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-wasm32.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-wasm32.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-xgate.c gas: equates of registers 2023-05-12 08:55:48 +02:00
tc-xgate.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-xstormy16.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-xstormy16.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-xtensa.c xtensa: sprintf sanitizer null destination pointer 2023-08-03 21:19:54 +09:30
tc-xtensa.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-z8k.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
tc-z8k.h Don't define COFF_MAGIC 2023-05-30 12:51:39 +09:30
tc-z80.c Revert "2.41 Release sources" 2023-08-02 12:06:23 +01:00
tc-z80.h Don't define COFF_MAGIC 2023-05-30 12:51:39 +09:30
te-386bsd.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-aix5.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-aix.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-armeabi.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-armfbsdeabi.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-armfbsdvfp.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-armlinuxeabi.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-cloudabi.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-csky_abiv1_linux.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-csky_abiv1.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-csky_abiv2_linux.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-csky_abiv2.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-dragonfly.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-freebsd.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-generic.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-gnu.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-go32.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-haiku.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-hppa64.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-hppa.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-hppalinux64.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-hpux.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-ia64aix.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-interix.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-irix.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-linux.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-lynx.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-macos.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-nacl.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-nbsd532.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-nbsd.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-pc532mach.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-pe.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-pep.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-pepaarch64.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-solaris.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-tmips.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-uclinux.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-vms.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-vms.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-vxworks.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
te-wince-pe.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
vax-inst.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
xtensa-istack.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
xtensa-relax.c Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30
xtensa-relax.h Update year range in copyright notice of binutils files 2023-01-01 21:50:11 +10:30