binutils-gdb/gas/config
Thomas Preud'homme 4d354d8b89 [ARM] Clean up selection of feature bits
I've always found the code in ARM backend of gas to control what
CPU/architecture and FPU are selected by the user and to support
autodetection of features complex and confusing. Chief among the
issues I have with that code is the lack of comments to explain
the meaning of the various variables. This patch addresses that
and much more:

- add comments to explain meaning of all arm_feature_set variables
- keep track of currently selected CPU, extensions and FPU in a separate
  set of new variables
- make naming of variable more consistent
- remove dead code
- simplify handling of extensions

The overall approach is as follows:

* restrict m*_opt variable to hold the feature bits of the
  corresponding mcpu/march/mfpu command-line options
* record selected CPU, extensions and FPU in new selected_* during
  md_begin
* whenever a .cpu/.arch/.arch_extension/.fpu directive is met, update
  the corresponding selected_* variables (eg. selected_arch, then
  selected_cpu for a .cpu or .arch directive) and then finally
  cpu_variant from them
* pass extension feature set pointer by value to arm_parse_extension
  since it's only ever called from arm_parse_cpu and arm_parse_arch
  which allocate the extension feature set themselves
* likewise, remove allocation from s_arm_arch_extension since the use
  of arm_feature_set structure for selected_ext rather than a pointer
  alleviate the need for it
* in autodetection mode, only set all CPU fits in cpu_variant but leave
  selected_cpu* variables unset
* in md_begin, remove dead "else if" to set a default FPU when no FPU
  was selected. Setting a default FPU based on CPU as did the code
  before it turn dead should be based on the default FPU field of the
  CPU and architecture table as will be done in a separate patch. Logic
  is wrong anyway since it sets VFP2 as default FPU for Armv6-M and
  Armv7-M

Hopefully that should be enough to understand the change but if not feel
free to ask questions about the patch. While I believe the new code is
easier to understand, it remains complex and the old one was even more
complex so the change is difficult to understand.

2018-03-01  Thomas Preud'homme  <thomas.preudhomme@arm.com>

	gas/
	* config/tc-arm.c (cpu_variant, arm_arch_used, thumb_arch_used,
	legacy_cpu, legacy_fpu, mcpu_cpu_opt, dyn_mcpu_ext_opt,
	mcpu_fpu_opt, march_cpu_opt, dyn_march_ext_opt, march_fpu_opt,
	mfpu_opt, object_arch, selected_cpu): Comment meaning of variables.
	(dyn_mcpu_ext_opt): Also rename into ...
	(mcpu_ext_opt): This.
	(dyn_march_ext_opt): Also rename into ...
	(march_ext_opt): This.
	(object_arch): Also rename into ...
	(selected_object_arch): This and make it a plain arm_feature_set
	structure.
	(selected_arch, selected_ext, selected_fpu): New static variables.
	(mark_feature_used): Fix comments, feature is marked as used iff it is
	currently allowed.
	(do_bx): Adapt to change in name and type of object_arch.
	(md_begin): Set selected_arch rather than mcpu_cpu_opt, selected_ext
	rather than dyn_mcpu_ext_opt and selected_fpu rather than mfpu_opt.
	Remove dead code to set default FPU if architecture version is greater
	than 5.  Set all CPU bits of cpu_variant directly in autodection
	leaving mcpu_cpu_opt, selected_arch and selected_cpu unset.
	(arm_parse_extension): Take extension feature set pointer parameter by
	value rather than by pointer.  Remove allocation code.  Adapt code
	accordingly.
	(arm_parse_cpu): Adapt to variable renaming and changes in
	arm_parse_extension () signature.
	(arm_parse_arch): Likewise.
	(aeabi_set_public_attributes): Also set selected_arch and selected_ext
	in addition to selected_cpu.  Set flags_arch and flags_ext from them
	instead of selected_cpu.  Adapt to variables renaming and type change.
	(arm_md_post_relax): Adapt to variable renaming.
	(s_arm_cpu): Set selcted_cpu_cpu and selected_ext instead of
	mcpu_cpu_opt and dyn_mcpu_ext_opt.  Set selected_cpu from them and
	cpu_variant from selected_cpu and selected_fpu.
	(s_arm_arch): Likewise.
	(s_arm_object_arch): Adapt to variable renaming.
	(s_arm_arch_extension): Use ARM_CPU_IS_ANY instead of checking feature
	set against arm_any.  Check selected_arch rather than *mcpu_cpu_opt.
	Set selected_ext rather than *dyn_mcpu_ext_opt and remove allocation
	code.
	(s_arm_fpu): Set selected_fpu instead of mfpu_opt.  Set all CPU feature
	bits if in autodetection mode.
2018-03-01 16:23:38 +00:00
..
aout_gnu.h Fix compile time warning building aout targeted architectures. 2018-01-12 13:12:17 +00:00
atof-ieee.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
atof-vax.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
bfin-aux.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
bfin-defs.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
bfin-lex-wrapper.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
bfin-lex.l Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
bfin-parse.y Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
e-crisaout.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
e-criself.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
e-i386aout.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
e-i386coff.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
e-i386elf.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
e-mipself.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
itbl-mips.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
m68k-parse.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
m68k-parse.y Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
obj-aout.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
obj-aout.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
obj-coff-seh.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
obj-coff-seh.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
obj-coff.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
obj-coff.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
obj-ecoff.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
obj-ecoff.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
obj-elf.c Fix compile time warning messages from gcc version 8 about cast between incompatible function types. 2018-02-13 13:14:47 +00:00
obj-elf.h Fix compile time warning messages from gcc version 8 about cast between incompatible function types. 2018-02-13 13:14:47 +00:00
obj-evax.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
obj-evax.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
obj-fdpicelf.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
obj-fdpicelf.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
obj-macho.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
obj-macho.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
obj-multi.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
obj-multi.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
obj-som.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
obj-som.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
rl78-defs.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
rl78-parse.y Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
rx-defs.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
rx-parse.y Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-aarch64.c [GAS][AARCH64]Add group relocations to create PC-relative offset. 2018-01-24 16:19:47 +00:00
tc-aarch64.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-alpha.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-alpha.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-arc.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-arc.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-arm.c [ARM] Clean up selection of feature bits 2018-03-01 16:23:38 +00:00
tc-arm.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-avr.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-avr.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-bfin.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-bfin.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-cr16.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-cr16.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-cris.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-cris.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-crx.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-crx.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-d10v.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-d10v.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-d30v.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-d30v.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-dlx.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-dlx.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-epiphany.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-epiphany.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-fr30.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-fr30.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-frv.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-frv.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-ft32.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-ft32.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-generic.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-generic.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-h8300.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-h8300.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-hppa.c Fix compile time warning messages from gcc version 8 about cast between incompatible function types. 2018-02-13 13:14:47 +00:00
tc-hppa.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-i370.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-i370.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-i386-intel.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-i386.c x86: Encode AVX256/AVX512 vpsub[bwdq] with VEX128/EVEX128 2018-03-01 06:08:31 -08:00
tc-i386.h Add .nop assembler directive 2018-02-17 05:20:57 -08:00
tc-i860.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-i860.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-i960.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-i960.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-ia64.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-ia64.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-ip2k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-ip2k.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-iq2000.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-iq2000.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-lm32.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-lm32.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-m32c.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-m32c.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-m32r.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-m32r.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-m68hc11.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-m68hc11.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-m68k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-m68k.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-m68851.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-mcore.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-mcore.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-mep.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-mep.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-metag.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-metag.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-microblaze.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-microblaze.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-mips.c Fix memory access violation when attempting to shorten a suffixed micromips instruction during lookup. 2018-02-22 12:49:49 +00:00
tc-mips.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-mmix.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-mmix.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-mn10200.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-mn10200.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-mn10300.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-mn10300.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-moxie.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-moxie.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-msp430.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-msp430.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-mt.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-mt.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-nds32.c nds32: Support target directive .ict_model. 2018-02-23 14:27:13 +08:00
tc-nds32.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-nios2.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-nios2.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-ns32k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-ns32k.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-or1k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-or1k.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-pdp11.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-pdp11.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-pj.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-pj.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-ppc.c PR22819, powerpc gas "instruction address is not a multiple of 4" 2018-02-08 13:56:29 +10:30
tc-ppc.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-pru.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-pru.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-riscv.c RISC-V/GAS: Correct an `expr' global shadowing error for pre-4.8 GCC 2018-02-05 14:06:46 +00:00
tc-riscv.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-rl78.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-rl78.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-rx.c Fix the RX assembler so that it can handle escaped double quote characters, ie: \" 2018-01-22 14:31:10 +00:00
tc-rx.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-s390.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-s390.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-score7.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-score.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-score.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-sh64.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-sh64.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-sh.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-sh.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-sparc.c Fix PR gas/22738 (.dc.a directive has wrong size on SPARC 64-bit). 2018-01-30 00:13:51 +01:00
tc-sparc.h Fix PR gas/22738 (.dc.a directive has wrong size on SPARC 64-bit). 2018-01-30 00:13:51 +01:00
tc-spu.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-spu.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-tic4x.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-tic4x.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-tic6x.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-tic6x.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-tic30.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-tic30.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-tic54x.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-tic54x.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-tilegx.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-tilegx.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-tilepro.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-tilepro.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-v850.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-v850.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-vax.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-vax.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-visium.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-visium.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-wasm32.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-wasm32.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-xc16x.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-xc16x.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-xgate.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-xgate.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-xstormy16.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-xstormy16.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-xtensa.c gas: xtensa: limit size of auto litpools 2018-02-20 11:49:48 -08:00
tc-xtensa.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-z8k.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-z8k.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-z80.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
tc-z80.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-386bsd.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-aix5.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-aix.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-armeabi.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-armfbsdeabi.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-armfbsdvfp.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-armlinuxeabi.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-dragonfly.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-dynix.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-epoc-pe.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-freebsd.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-generic.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-gnu.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-go32.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-hppa64.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-hppa.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-hppalinux64.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-hpux.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-i386aix.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-ia64aix.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-interix.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-irix.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-linux.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-lynx.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-mach.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-macos.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-nacl.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-nbsd532.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-nbsd.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-netware.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-pc532mach.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-pe.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-pep.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-psos.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-riscix.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-solaris.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-sparcaout.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-sun3.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-svr4.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-symbian.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-tmips.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-uclinux.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-vms.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-vms.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-vxworks.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
te-wince-pe.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
vax-inst.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
xtensa-istack.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
xtensa-relax.c Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30
xtensa-relax.h Update year range in copyright notice of binutils files 2018-01-03 17:49:56 +10:30