binutils-gdb/gas/config
Nick Clifton c0e7cef715 Split the AArch64 Crypto instructions for AES and SHA1+2 into their own options (+aes and +sha2).
The new options are:

	+aes: Enables the AES instructions of Armv8-a,
	      enabled by default with +crypto.

	+sha2: Enables the SHA1 and SHA2 instructions of Armv8-a,
	       enabled by default with +crypto.

These options have been turned on by default when +crypto
is used, as such no breakage is expected.

The reason for the split is because with the introduction of Armv8.4-a
the implementation of AES has explicitly been made independent of the
implementation of the other crypto extensions. Backporting the split does
not break any of the previous requirements and so is safe to do.

gas	* config/tc-aarch64.c
	(aarch64_features): Include AES and SHA2 in CRYPTO.
	Add SHA2 and AES.

include	* opcode/aarch64.h:
	(AARCH64_FEATURE_SHA2, AARCH64_FEATURE_AES): New.

opcodes	* aarch64-tbl.h (aarch64_feature_crypto): Add AES and SHA2.
	(aarch64_feature_sha2, aarch64_feature_aes): New.
	(SHA2, AES): New.
	(AES_INSN, SHA2_INSN): New.
	(pmull, pmull2, aese, aesd, aesmc, aesimc): Change to AES_INS.
	(sha1h, sha1su1, sha256su0, sha1c, sha1p,
	 sha1m, sha1su0, sha256h, sha256h2, sha256su1):
	Change to SHA2_INS.
2017-11-08 14:30:53 +00:00
..
aout_gnu.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
atof-ieee.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
atof-vax.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
bfin-aux.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
bfin-defs.h Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
bfin-lex-wrapper.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
bfin-lex.l Add support for processing lex source files with flex v 2.6.3 2017-01-18 13:38:27 +00:00
bfin-parse.y Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
e-crisaout.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
e-criself.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
e-i386aout.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
e-i386coff.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
e-i386elf.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
e-mipself.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
itbl-mips.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
m68k-parse.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
m68k-parse.y Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
obj-aout.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
obj-aout.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
obj-coff-seh.c Fix gas crash on missing seh_endproc. 2017-07-19 08:05:30 +02:00
obj-coff-seh.h Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
obj-coff.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
obj-coff.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
obj-ecoff.c GAS: Add ECOFF `.aent' pseudo-op support 2017-02-17 21:29:11 +00:00
obj-ecoff.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
obj-elf.c PR21167, relocation sections not included in groups 2017-10-05 08:38:11 +10:30
obj-elf.h Support ELF SHF_GNU_MBIND and PT_GNU_MBIND_XXX 2017-04-04 09:06:04 -07:00
obj-evax.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
obj-evax.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
obj-fdpicelf.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
obj-fdpicelf.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
obj-macho.c Fix memory corruption when assembling an i386 darwin source file. 2017-08-10 11:51:42 +01:00
obj-macho.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
obj-multi.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
obj-multi.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
obj-som.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
obj-som.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
rl78-defs.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
rl78-parse.y Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
rx-defs.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
rx-parse.y Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-aarch64.c Split the AArch64 Crypto instructions for AES and SHA1+2 into their own options (+aes and +sha2). 2017-11-08 14:30:53 +00:00
tc-aarch64.h [AArch64, gas] Support ILP32 triplet aarch64*-linux-gnu_ilp32 2017-05-22 13:27:11 +01:00
tc-alpha.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-alpha.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-arc.c Update check conditions for illegal placed instructions. 2017-06-26 08:53:10 +02:00
tc-arc.h [ARC] Don't convert _DYNAMIC@ to _GLOBAL_OFFSET_TABLE_ 2017-06-08 19:00:35 +02:00
tc-arm.c Adds command line support for Armv8.4-A, via the new command line option -march=armv8.4-a. Add support for "+dotprod" ARM feature (required for ARMv8.4-A). Add assembler and disassembler support for new FP16 instructions introduced in Armv8.4-A 2017-11-08 13:15:12 +00:00
tc-arm.h [ARM] Keep separation between extensions and architecture bits throughout execution 2017-06-21 14:11:14 +01:00
tc-avr.c Fix the AVR assembler so that it will correctly issue warnings about skipped instructions even if subsections are used. 2017-10-19 16:21:51 +01:00
tc-avr.h Fix the AVR assembler so that it will correctly issue warnings about skipped instructions even if subsections are used. 2017-10-19 16:21:51 +01:00
tc-bfin.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-bfin.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-cr16.c gas and ld pluralization fixes 2017-11-07 17:00:37 +10:30
tc-cr16.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-cris.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-cris.h Allow target files access to default TC_FORCE_RELOCATION defines 2017-05-16 10:35:02 +09:30
tc-crx.c PR22348, conflicting global vars in crx and cr16 2017-10-25 22:14:58 +10:30
tc-crx.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-d10v.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-d10v.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-d30v.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-d30v.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-dlx.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-dlx.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-epiphany.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-epiphany.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-fr30.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-fr30.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-frv.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-frv.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-ft32.c FT32B is a new FT32 family member. It has a code compression scheme, which requires the use of linker relaxations. The change is quite large, so submission is in several parts. 2017-11-01 15:33:24 +00:00
tc-ft32.h FT32B is a new FT32 family member. It has a code compression scheme, which requires the use of linker relaxations. The change is quite large, so submission is in several parts. 2017-11-01 15:33:24 +00:00
tc-generic.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-generic.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-h8300.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-h8300.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-hppa.c Fix bb instructions with double-word condition on hppa. 2017-07-31 12:51:25 -04:00
tc-hppa.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-i370.c gas and ld pluralization fixes 2017-11-07 17:00:37 +10:30
tc-i370.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-i386-intel.c x86: Update segment register check in Intel syntax 2017-08-01 05:53:27 -07:00
tc-i386.c x86: Check invalid XMM register in AVX512 gathers 2017-10-26 11:18:25 -07:00
tc-i386.h Allow target files access to default TC_FORCE_RELOCATION defines 2017-05-16 10:35:02 +09:30
tc-i860.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-i860.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-i960.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-i960.h Allow target files access to default TC_FORCE_RELOCATION defines 2017-05-16 10:35:02 +09:30
tc-ia64.c Support ELF SHF_GNU_MBIND and PT_GNU_MBIND_XXX 2017-04-04 09:06:04 -07:00
tc-ia64.h Allow target files access to default TC_FORCE_RELOCATION defines 2017-05-16 10:35:02 +09:30
tc-ip2k.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-ip2k.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-iq2000.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-iq2000.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-lm32.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-lm32.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-m32c.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-m32c.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-m32r.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-m32r.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-m68hc11.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-m68hc11.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-m68k.c gas and ld pluralization fixes 2017-11-07 17:00:37 +10:30
tc-m68k.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-m68851.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-mcore.c gas and ld pluralization fixes 2017-11-07 17:00:37 +10:30
tc-mcore.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-mep.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-mep.h Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-metag.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-metag.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-microblaze.c Support ELF SHF_GNU_MBIND and PT_GNU_MBIND_XXX 2017-04-04 09:06:04 -07:00
tc-microblaze.h Allow target files access to default TC_FORCE_RELOCATION defines 2017-05-16 10:35:02 +09:30
tc-mips.c MIPS: Preset EF_MIPS_ABI2 with n32 ELF objects 2017-10-23 15:39:46 +01:00
tc-mips.h Allow target files access to default TC_FORCE_RELOCATION defines 2017-05-16 10:35:02 +09:30
tc-mmix.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-mmix.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-mn10200.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-mn10200.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-mn10300.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-mn10300.h Allow target files access to default TC_FORCE_RELOCATION defines 2017-05-16 10:35:02 +09:30
tc-moxie.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-moxie.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-msp430.c gas and ld pluralization fixes 2017-11-07 17:00:37 +10:30
tc-msp430.h Allow target files access to default TC_FORCE_RELOCATION defines 2017-05-16 10:35:02 +09:30
tc-mt.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-mt.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-nds32.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-nds32.h Allow target files access to default TC_FORCE_RELOCATION defines 2017-05-16 10:35:02 +09:30
tc-nios2.c Fix segfault processing nios2 pseudo-instructions with too few arguments. 2017-10-16 20:45:55 -07:00
tc-nios2.h Nios2 dynobj handling fixes 2017-02-28 13:20:21 +10:30
tc-ns32k.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-ns32k.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-or1k.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-or1k.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-pdp11.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-pdp11.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-pj.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-pj.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-ppc.c Missing relocation R_PPC_VLE_ADDR20 and add VLE flag to details in readelf 2017-09-05 08:42:27 +09:30
tc-ppc.h Reduce excessive .eh_frame alignment for powerpc 2017-09-21 23:17:44 +09:30
tc-pru.c Fix compile time warnings building the binutils with gcc 7.1.1. 2017-07-12 12:17:02 +01:00
tc-pru.h Allow target files access to default TC_FORCE_RELOCATION defines 2017-05-16 10:35:02 +09:30
tc-riscv.c RISC-V: Fix riscv g++ testsuite EH failures. 2017-11-07 09:13:52 -08:00
tc-riscv.h Allow target files access to default TC_FORCE_RELOCATION defines 2017-05-16 10:35:02 +09:30
tc-rl78.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-rl78.h Allow target files access to default TC_FORCE_RELOCATION defines 2017-05-16 10:35:02 +09:30
tc-rx.c Improve handling of REPT pseudo op with a negative count. 2017-10-20 11:45:19 +01:00
tc-rx.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-s390.c gas and ld pluralization fixes 2017-11-07 17:00:37 +10:30
tc-s390.h Allow target files access to default TC_FORCE_RELOCATION defines 2017-05-16 10:35:02 +09:30
tc-score.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-score.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-score7.c Don't compare boolean values against TRUE or FALSE 2017-05-18 14:59:33 +09:30
tc-sh.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-sh.h Allow target files access to default TC_FORCE_RELOCATION defines 2017-05-16 10:35:02 +09:30
tc-sh64.c Fix spelling typos. 2017-07-18 16:58:14 +01:00
tc-sh64.h Allow target files access to default TC_FORCE_RELOCATION defines 2017-05-16 10:35:02 +09:30
tc-sparc.c gas: enable PC-relative diff relocations on sparc64 2017-08-23 05:46:45 -07:00
tc-sparc.h gas: enable PC-relative diff relocations on sparc64 2017-08-23 05:46:45 -07:00
tc-spu.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-spu.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-tic4x.c Fix spelling typos. 2017-07-18 16:58:14 +01:00
tc-tic4x.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-tic6x.c Support ELF SHF_GNU_MBIND and PT_GNU_MBIND_XXX 2017-04-04 09:06:04 -07:00
tc-tic6x.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-tic30.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-tic30.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-tic54x.c gas and ld pluralization fixes 2017-11-07 17:00:37 +10:30
tc-tic54x.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-tilegx.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-tilegx.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-tilepro.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-tilepro.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-v850.c Fix compile time warnings building the binutils with gcc 7.1.1. 2017-07-12 12:17:02 +01:00
tc-v850.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-vax.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-vax.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-visium.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-visium.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-wasm32.c Add support for the WebAssembly file format and the wasm32 ELF conversion to gas and the binutils. 2017-03-30 10:57:21 +01:00
tc-wasm32.h Add support for the WebAssembly file format and the wasm32 ELF conversion to gas and the binutils. 2017-03-30 10:57:21 +01:00
tc-xc16x.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-xc16x.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-xgate.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-xgate.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-xstormy16.c Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-xstormy16.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-xtensa.c xtensa message pluralization 2017-11-08 14:33:48 +10:30
tc-xtensa.h xtensa: don't expect XCHAL_* macros to be constant 2017-06-14 11:05:50 -07:00
tc-z8k.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-z8k.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
tc-z80.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
tc-z80.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-386bsd.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-aix.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-aix5.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-armeabi.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-armfbsdeabi.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-armfbsdvfp.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-armlinuxeabi.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-dragonfly.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-dynix.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-epoc-pe.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-freebsd.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-generic.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-gnu.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-go32.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-hppa.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-hppa64.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-hppalinux64.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-hpux.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-i386aix.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-ia64aix.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-interix.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-irix.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-linux.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-lynx.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-mach.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-macos.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-nacl.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-nbsd.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-nbsd532.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-netware.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-pc532mach.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-pe.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-pep.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-psos.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-riscix.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-solaris.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-sparcaout.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-sun3.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-svr4.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-symbian.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-tmips.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-uclinux.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-vms.c Fix spelling mistakes and typos in the GAS sources. 2017-01-23 15:23:07 +00:00
te-vms.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-vxworks.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
te-wince-pe.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
vax-inst.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
xtensa-istack.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30
xtensa-relax.c gas and ld pluralization fixes 2017-11-07 17:00:37 +10:30
xtensa-relax.h Update year range in copyright notice of all files. 2017-01-02 14:08:56 +10:30