binutils-gdb/gas/config
H.J. Lu a8c4d40b57 ELF: Add support for unique section ID to assembler
Clang's integrated assembler supports multiple section with the same
name:

	.section .text,"ax",@progbits,unique,1
	nop
	.section .text,"ax",@progbits,unique,2
	nop

"unique,N" assigns the number, N, as the section ID, to a section.  The
valid values of the section ID are between 0 and 4294967295.  It can be
used to distinguish different sections with the same section name.

This is useful with -fno-unique-section-names -ffunction-sections.
-ffunction-sections by default generates .text.foo, .text.bar, etc.
Using the same string can save lots of space in .strtab.

This patch adds section_id to bfd_section and reuses the linker
internal bit in BFD section flags, SEC_LINKER_CREATED, for assmebler
internal use to mark valid section_id.  It also updates objdump to
compare section pointers if 2 sections comes from the same file since
2 different sections can have the same section name.

bfd/

	PR gas/25380
	* bfd-in2.h: Regenerated.
	* ecoff.c (bfd_debug_section): Add section_id.
	* section.c (bfd_section): Add section_id.
	(SEC_ASSEMBLER_SECTION_ID): New.
	(BFD_FAKE_SECTION): Add section_id.

binutils/

	PR gas/25380
	* objdump.c (sym_ok): Return FALSE if 2 sections are in the
	same file with different section pointers.

gas/

	PR gas/25380
	* config/obj-elf.c (section_match): Removed.
	(get_section): Also match SEC_ASSEMBLER_SECTION_ID and
	section_id.
	(obj_elf_change_section): Replace info and group_name arguments
	with match_p.  Also update the section ID and flags from match_p.
	(obj_elf_section): Handle "unique,N".  Update call to
	obj_elf_change_section.
	* config/obj-elf.h (elf_section_match): New.
	(obj_elf_change_section): Updated.
	* config/tc-arm.c (start_unwind_section): Update call to
	obj_elf_change_section.
	* config/tc-ia64.c (obj_elf_vms_common): Likewise.
	* config/tc-microblaze.c (microblaze_s_data): Likewise.
	(microblaze_s_sdata): Likewise.
	(microblaze_s_rdata): Likewise.
	(microblaze_s_bss): Likewise.
	* config/tc-mips.c (s_change_section): Likewise.
	* config/tc-msp430.c (msp430_profiler): Likewise.
	* config/tc-rx.c (parse_rx_section): Likewise.
	* config/tc-tic6x.c (tic6x_start_unwind_section): Likewise.
	* doc/as.texi: Document "unique,N" in .section directive.
	* testsuite/gas/elf/elf.exp: Run "unique,N" tests.
	* testsuite/gas/elf/section15.d: New file.
	* testsuite/gas/elf/section15.s: Likewise.
	* testsuite/gas/elf/section16.s: Likewise.
	* testsuite/gas/elf/section16a.d: Likewise.
	* testsuite/gas/elf/section16b.d: Likewise.
	* testsuite/gas/elf/section17.d: Likewise.
	* testsuite/gas/elf/section17.l: Likewise.
	* testsuite/gas/elf/section17.s: Likewise.
	* testsuite/gas/i386/unique.d: Likewise.
	* testsuite/gas/i386/unique.s: Likewise.
	* testsuite/gas/i386/x86-64-unique.d: Likewise.
	* testsuite/gas/i386/i386.exp: Run unique and x86-64-unique.

ld/

	PR gas/25380
	* testsuite/ld-i386/pr22001-1c.S: Use "unique,N" in .section
	directives.
	* testsuite/ld-i386/tls-gd1.S: Likewise.
	* testsuite/ld-x86-64/pr21481b.S: Likewise.
2020-02-02 17:08:01 -08:00
..
atof-ieee.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
atof-vax.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
bfin-aux.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
bfin-defs.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
bfin-lex-wrapper.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
bfin-lex.l Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
bfin-parse.y Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
e-crisaout.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
e-criself.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
e-i386aout.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
e-i386coff.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
e-i386elf.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
e-mipself.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
itbl-mips.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
m68k-parse.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
m68k-parse.y Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
obj-aout.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
obj-aout.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
obj-coff-seh.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
obj-coff-seh.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
obj-coff.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
obj-coff.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
obj-ecoff.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
obj-ecoff.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
obj-elf.c ELF: Add support for unique section ID to assembler 2020-02-02 17:08:01 -08:00
obj-elf.h ELF: Add support for unique section ID to assembler 2020-02-02 17:08:01 -08:00
obj-evax.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
obj-evax.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
obj-fdpicelf.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
obj-fdpicelf.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
obj-macho.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
obj-macho.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
obj-multi.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
obj-multi.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
obj-som.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
obj-som.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
rl78-defs.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
rl78-parse.y Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
rx-defs.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
rx-parse.y Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-aarch64.c [gas][aarch64] Turn on SVE when using f32mm or f64mm extensions 2020-01-13 15:31:39 +00:00
tc-aarch64.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-alpha.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-alpha.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-arc.c [ARC][committed] Code cleanup and improvements. 2020-01-13 11:16:47 +02:00
tc-arc.h [ARC][committed] Code cleanup and improvements. 2020-01-13 11:16:47 +02:00
tc-arm.c ELF: Add support for unique section ID to assembler 2020-02-02 17:08:01 -08:00
tc-arm.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-avr.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-avr.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-bfin.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-bfin.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-bpf.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-bpf.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-cr16.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-cr16.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-cris.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-cris.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-crx.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-crx.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-csky.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-csky.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-d10v.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-d10v.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-d30v.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-d30v.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-dlx.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-dlx.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-epiphany.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-epiphany.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-fr30.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-fr30.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-frv.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-frv.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-ft32.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-ft32.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-generic.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-generic.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-h8300.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-h8300.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-hppa.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-hppa.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-i386-intel.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-i386.c x86: prevent undue use of GOT32X and alike relocations 2020-01-30 17:03:22 +01:00
tc-i386.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-ia64.c ELF: Add support for unique section ID to assembler 2020-02-02 17:08:01 -08:00
tc-ia64.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-ip2k.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-ip2k.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-iq2000.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-iq2000.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-lm32.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-lm32.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-m32c.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-m32c.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-m32r.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-m32r.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-m68hc11.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-m68hc11.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-m68k.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-m68k.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-m68851.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-mcore.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-mcore.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-mep.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-mep.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-metag.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-metag.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-microblaze.c ELF: Add support for unique section ID to assembler 2020-02-02 17:08:01 -08:00
tc-microblaze.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-mips.c ELF: Add support for unique section ID to assembler 2020-02-02 17:08:01 -08:00
tc-mips.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-mmix.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-mmix.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-mn10200.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-mn10200.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-mn10300.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-mn10300.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-moxie.c moxie: don't force big-endian mode 2020-02-01 20:59:19 -05:00
tc-moxie.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-msp430.c ELF: Add support for unique section ID to assembler 2020-02-02 17:08:01 -08:00
tc-msp430.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-mt.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-mt.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-nds32.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-nds32.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-nios2.c nios2: recognize %gotoff relocation in assembler 2020-01-31 10:32:48 -08:00
tc-nios2.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-ns32k.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-ns32k.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-or1k.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-or1k.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-pdp11.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-pdp11.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-pj.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-pj.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-ppc.c PowerPC64 __tls_get_addr_desc 2020-01-22 17:14:08 +10:30
tc-ppc.h Allow individual targets to decide if string escapes should be allowed. Disable for PPC and Z80. 2020-01-03 16:23:19 +00:00
tc-pru.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-pru.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-riscv.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-riscv.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-rl78.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-rl78.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-rx.c ELF: Add support for unique section ID to assembler 2020-02-02 17:08:01 -08:00
tc-rx.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-s12z.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-s12z.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-s390.c Fix compile time build problem building the s390 assembler. 2020-01-31 16:43:57 +00:00
tc-s390.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-score7.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-score.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-score.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-sh.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-sh.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-sparc.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-sparc.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-spu.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-spu.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-tic4x.c tic4x: sign extension using shifts 2020-01-13 12:12:05 +10:30
tc-tic4x.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-tic6x.c ELF: Add support for unique section ID to assembler 2020-02-02 17:08:01 -08:00
tc-tic6x.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-tic30.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-tic30.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-tic54x.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-tic54x.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-tilegx.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-tilegx.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-tilepro.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-tilepro.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-v850.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-v850.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-vax.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-vax.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-visium.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-visium.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-wasm32.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-wasm32.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-xc16x.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-xc16x.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-xgate.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-xgate.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-xstormy16.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-xstormy16.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-xtensa.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-xtensa.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-z8k.c ubsan: z8k: index 10 out of bounds for type 'unsigned int const[10]' 2020-01-08 21:51:32 +10:30
tc-z8k.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
tc-z80.c Fix various assembler testsuite failures for the Z80 target. 2020-01-14 13:13:57 +00:00
tc-z80.h Fix various assembler testsuite failures for the Z80 target. 2020-01-14 13:13:57 +00:00
te-386bsd.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-aix5.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-aix.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-armeabi.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-armfbsdeabi.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-armfbsdvfp.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-armlinuxeabi.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-cloudabi.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-csky_abiv1_linux.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-csky_abiv1.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-csky_abiv2_linux.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-csky_abiv2.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-dragonfly.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-freebsd.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-generic.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-gnu.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-go32.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-hppa64.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-hppa.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-hppalinux64.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-hpux.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-ia64aix.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-interix.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-irix.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-linux.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-lynx.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-macos.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-nacl.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-nbsd532.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-nbsd.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-pc532mach.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-pe.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-pep.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-solaris.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-svr4.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-symbian.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-tmips.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-uclinux.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-vms.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-vms.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-vxworks.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
te-wince-pe.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
vax-inst.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
xtensa-istack.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
xtensa-relax.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
xtensa-relax.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30