Fix typo in readelf error message.
[external/binutils.git] / binutils / ChangeLog
1 2016-09-14  Ed Maste  <emaste@freebsd.org>
2
3         * readelf.c (process_mips_specific): Fix typo in error message.
4
5 2016-09-06  Nick Clifton  <nickc@redhat.com>
6
7         * readelf.c (request_dump_bynumber): Only call memcpy if
8         dump_sects is not NULL.
9
10 2016-08-29  H.J. Lu  <hongjiu.lu@intel.com>
11
12         * readelf.c (load_specific_debug_section): Check the external
13         compression header size.
14
15 2016-08-19  Nick Clifton  <nickc@redhat.com>
16
17         * testsuite/binutils-all/readelf.s: Adjust expected ordering of
18         sections.
19         * testsuite/binutils-all/readelf.s-64: Likewise.
20
21 2016-08-12  Nick Clifton  <nickc@redhat.com>
22
23         * readelf.c (process_symbol_table): Generate a warning if a local
24         symbol is found at and offste greater than or equal to the sh_info
25         field of it's section header.
26
27 2016-08-08  Nick Clifton  <nickc@redhat.com>
28
29         PR binutils/20440
30         * dwarf.c (display_debug_lines_decoded): Add checks for running
31         off the end of the section when populating the directory table and
32         file table.
33         (frame_display_row): Set max_regs equal to ncols.
34         * readelf.c (load_specific_debug_section): If the section is
35         compressed, but it is not big enough to hold a compression
36         header then warn and return 0.
37
38         PR binutils/20439
39         * dwarf.c (display_debug_lines_decoded): Check directory and file
40         indicies before using them to access directory and file tables.
41
42 2016-08-02  Nick Clifton  <nickc@redhat.com>
43
44         PR binutils/17512
45         * resbin.c (bin_to_res_version): Cast variables to correct type
46         for printing in error message.
47
48 2016-07-28  Nick Clifton  <nickc@redhat.com>
49
50         PR binutils/17512
51         * rescoff.c (read_coff_res_dir): Fix detection of buffer overrun.
52         * resbin.c (bin_to_res_version): Allow for the padded length of a
53         version block to be longer than the recorded length.  Skip padding
54         bytes.
55
56 2016-07-21  H.J. Lu  <hongjiu.lu@intel.com>
57
58         * configure: Regenerated.
59
60 2016-07-20  Claudiu Zissulescu  <claziss@synopsys.com>
61
62         * doc/binutils.texi (objdump): Add ARC disassembler options.
63         * testsuite/binutils-all/arc/dsp.s: New file.
64         * testsuite/binutils-all/arc/objdump.exp: Likewise.
65         * NEWS: Mention the new feature.
66
67 2016-07-20  Nick Clifton  <nickc@redhat.com>
68
69         * doc/binutils.texi (objcopy): Note that the localize symbol
70         options do not affect unique symbols.
71
72 2016-07-16  Alan Modra  <amodra@gmail.com>
73
74         * ar.c: Include plugin-api.h.
75         * nm.c: Likewise.
76
77 2016-07-16  Alan Modra  <amodra@gmail.com>
78
79         * bucomm.c: Don't include libbfd.h.
80         (endian_string, display_target_list): Delete forward declaration.
81         (display_info_table, display_target_tables): Likewise.
82         (LONGEST_ARCH): Delete.
83         (struct display_target): New.
84         (do_display_target): New function.
85         (display_target_list, display_info): Rewrite functions.
86         (display_info_table): Delete.
87         (do_info_size, do_info_header, do_info_row): New functions.
88
89 2016-07-16  Alan Modra  <amodra@gmail.com>
90
91         * elfcomm.h (HOST_WIDEST_INT): Move to..
92         * sysdep.h: ..here.
93         * od-macho.c: Don't include libbfd.h.  Do include dwarf.h
94         (dump_dyld_info_rebase): Use read_leb128 rather than
95         read_unsigned_leb128.
96         (dump_dyld_info_bind, dump_dyld_info_export_1): Likewise.
97         (dump_segment_split_info): Likewise.
98         (dump_dyld_info): Rename vars to avoid shadowing dwarf.h enums.
99         (dump_load_command): Likewise.
100
101 2016-07-16  Alan Modra  <amodra@gmail.com>
102
103         * ar.c: Don't include libbfd.h.
104         * objcopy.c: Likewise.
105         * bucomm.c (bfd_get_archive_filename): Use xmalloc rather than
106         bfd_malloc.
107
108 2016-07-15  Alan Modra  <amodra@gmail.com>
109
110         * testsuite/binutils-all/remove-relocs-01.s: Use .dc.a, not .word.
111
112 2016-07-14  Andrew Burgess  <andrew.burgess@embecosm.com>
113
114         * doc/binutils.texi (objcopy): Document 'remove-relocations'.
115         (strip): Likewise.
116         * objcopy.c (SECTION_CONTEXT_REMOVE_RELOCS): Define.
117         (enum command_line_switch): Add 'OPTION_REMOVE_RELOCS'.
118         (struct option strip_options): Add 'remove-relocations'.
119         (struct option copy_options): Likewise.
120         (copy_usage): Likewise.
121         (strip_usage): Likewise.
122         (handle_remove_relocations_option): New function.
123         (discard_relocations): New function.
124         (handle_remove_section_option): New function.
125         (copy_relocations_in_section): Use discard_relocations.
126         (strip_main): Use handle_remove_section_option for
127         'remove-section', and handle 'remove-relocations' option.
128         (copy_main): Likewise.
129         * testsuite/binutils-all/objcopy.exp: Run new tests.
130         * testsuite/binutils-all/remove-relocs-01.d: New file.
131         * testsuite/binutils-all/remove-relocs-01.s: New file.
132         * testsuite/binutils-all/remove-relocs-02.d: New file.
133         * testsuite/binutils-all/remove-relocs-03.d: New file.
134         * testsuite/binutils-all/remove-relocs-04.d: New file.
135         * testsuite/binutils-all/remove-relocs-05.d: New file.
136         * testsuite/binutils-all/remove-relocs-06.d: New file.
137         * NEWS: Mention new option.
138
139 2016-07-14  Andrew Burgess  <andrew.burgess@embecosm.com>
140
141         * objcopy.c (find_section_list): Handle section patterns starting
142         with '!' being a non-matching pattern.
143         * doc/binutils.texi (objcopy): Give example of using '!' with
144         --remove-section and --only-section.
145         (strip): Give example of using '!' with --remove-section.
146         * testsuite/binutils-all/data-sections.s: New file.
147         * testsuite/binutils-all/only-section-01.d: New file.
148         * testsuite/binutils-all/remove-section-01.d: New file.
149         * testsuite/binutils-all/objcopy.exp: Run new tests.
150         * NEWS: Mention new feature.
151
152 2016-07-09  Alan Modra  <amodra@gmail.com>
153
154         PR binutils/20337
155         * objdump.c (compare_symbols): For ELF, sort same value/type
156         symbols according to size.
157
158 2016-07-05  Andre Vieria  <andre.simoesdiasvieira@arm.com>
159
160         * objdump.c (dump_section_header): Rename SEC_ELF_NOREAD
161         to SEC_ELF_NOREAD.
162         * readelf.c (get_elf_section_flags): Rename ARM_NOREAD to
163         ARM_PURECODE and SHF_ARM_NOREAD to SHF_ARM_PURECODE.
164         (process_section_headers): Rename noread to purecode.
165
166         * section.c (SEC_ELF_NOREAD): Rename to ...
167         (SEC_ELF_PURECODE): ... this.
168
169 2016-07-01  Nick Clifton  <nickc@redhat.com>
170
171         * prdbg.c (pr_enum_type): Use a buffer big enough to hold an
172         extremely large decimal value.
173         (pr_range_type): Likewise.
174         (pr_array_type): Likewise.
175         (pr_struct_field): Likewise.
176         (pr_class_baseclass): Likewise.
177         (pr_class_method_variant): Likewise.
178         (pr_tag_type): Likewise.
179         (pr_int_constant): Likewise.
180         (pr_typed_constant): Likewise.
181         (pr_variable): Likewise.
182         (pr_function_parameter): Likewise.
183         (pr_start_block): Likewise.
184         (pr_lineno): Likewise.
185         (pr_end_block): Likewise.
186         (tg_enum_type): Likewise.
187         (tg_int_constant): Likewise.
188         (tg_typed_constant): Likewise.
189         (tg_start_block): Likewise.
190
191 2016-07-01  Nick Clifton  <nickc@redhat.com>
192
193         * testsuite/binutils-all/objcopy.exp
194         (objcopy_test_without_global_symbol): Expect this test to fail on
195         the AArch64 and ARM targets, since they preserve their mapping
196         symbols.
197
198 2016-07-01  Tristan Gingold  <gingold@adacore.com>
199
200         * NEWS: Add marker for 2.27.
201
202 2016-07-30  Tristan Gingold  <gingold@adacore.com>
203
204         * doc/binutils.texi (objdump): Fix mis-placement.
205
206 2016-06-28  Nick Clifton  <nickc@redhat.com>
207
208         * testsuite/binutils-all/ar.exp: Relax previous restriction on
209         Alpha targets.  Allow ELF based Alpha targets.
210
211 2016-06-28  Maciej W. Rozycki  <macro@imgtec.com>
212
213         * testsuite/binutils-all/ar.exp: Use `supports_gnu_unique' with
214         the `unique_symbol' test.
215
216 2016-06-28  Alan Modra  <amodra@gmail.com>
217
218         PR 20304
219         * objdump.c (objdump_print_symname): Don't attempt to retrieve
220         version info from synthetic symbols.
221
222 2016-06-24  Alan Modra  <amodra@gmail.com>
223
224         * objcopy.c (find_section_rename): Forward declare.  Remove
225         ibfd and sec_ptr param.  Add old_name param.  Allow for NULL
226         returned_flags.  Move read of section name and flags to..
227         (setup_section): ..here.  Update find_section_rename call.
228         (filter_symbols): Rename section symbols for renamed sections.
229         (copy_object): Call filter_symbols when renamed sections.
230         * testsuite/lib/binutils-common.exp (is_bad_symtab): New.
231         * testsuite/binutils-all/update-section.exp: Revert 96037eb0
232         mips xfail.
233         * testsuite/binutils-all/objcopy.exp (copy_executable): Use
234         is_bad_symtab.
235         (localize-hidden-1): xfail if is_bad_symtab.
236         * testsuite/binutils-all/readelf.exp: Use is_bad_symtab to select
237         between mips/tmips.
238
239 2016-06-24  Alan Modra  <amodra@gmail.com>
240
241         * objdump.c (struct print_file_list): Add "max_printed".
242         (try_print_file_open): Init new field.
243         (show_line): Don't show 5 context lines when redisplaying source.
244
245 2016-06-22  Nick Clifton  <nickc@redhat.com>
246
247         * testsuite/binutils-all/ar.exp: Skip tests for Alpha target.
248         Skip bfdtest1 tests for tic30 target.
249         * testsuite/binutils-all/arm/objdump.exp: Skip for aout arm
250         target.
251         * testsuite/binutils-all/compress.exp: Expect some tests to fail
252         on the nds32.
253         * testsuite/binutils-all/copy-3.d: Skip for go32 targets.
254         * testsuite/binutils-all/copy-4.d: Skip for AIX and linuxecoff
255         targets.
256         * testsuite/binutils-all/nm.exp: Treat beos based targets as ELF
257         targets.
258         * testsuite/binutils-all/objcopy.exp: Only run reverse bytes tests
259         if the bintest.o file was created.  Use the
260         get_standard_section_names proc to get the name of the data
261         section.
262         * testsuite/binutils-all/objdump.exp: Update regexps to allow for
263         RX section names.
264         * testsuite/binutils-all/readelf.exp: Use
265         get_standard_section_names proc to get the name of the data
266         section.
267         * testsuite/binutils-all/readelf.r: Allow for non standard text
268         section names.
269         * testsuite/binutils-all/readelf.s: Update regexps for tilepro.
270         * testsuite/binutils-all/size.exp: Allow for non standard section
271         names.
272         * testsuite/binutils-all/update-section.exp: Expect comapre 1vs4
273         to fail on mips targets.
274         * testsuite/lib/utils-lib.exp (default_binutils_run): Use
275         get_standard_section_names proc.
276         (run_dump_test): Likewise.
277         (proc get_standard_section_names): New proc.
278
279 2016-06-22  Nick Clifton  <nickc@redhat.com>
280
281         * readelf.c (dynamic_section_mips_val): Increase size of timebuf.
282         (process_mips_specific): Likewise.
283         (process_gnu_liblist): Likewise.
284
285 2016-06-21  Graham Markall  <graham.markall@embecosm.com>
286
287         * readelf.c (decode_ARC_machine_flags): Remove E_ARC_MACH_NPS400
288         case.
289
290 2016-06-15  Nick Clifton  <nickc@redhat.com>
291
292         * readelf.c (is_24bit_abs_reloc): Add support for R_FT32_20
293         reloc.
294
295 2016-06-14  John Baldwin  <jhb@FreeBSD.org>
296
297         * objcopy.c (do_elf_stt_common): Use correct type.
298
299 2016-06-14  Alan Modra  <amodra@gmail.com>
300
301         * ar.c: Expand uses of bfd_my_archive.
302         * size.c: Likewise.
303
304 2016-06-14  Alan Modra  <amodra@gmail.com>
305
306         PR ld/20241
307         * bucomm.c (bfd_get_archive_filename): Return file name within thin
308         archive.
309
310 2016-06-02  Nick Clifton  <nickc@redhat.com>
311
312         PR 20089
313         * objcopy.c (group_signature): Fail if the input symbol table has
314         not been loaded, or if the sh_info field of the group header is 0.
315
316         * dwarf.c (display_debug_frames): Do not display any
317         interpretation if the block consists solely of DW__CFA_NOPs.
318
319 2016-05-31  Alan Modra  <amodra@gmail.com>
320
321         * objcopy.c: Formatting, whitespace throughout.
322         (copy_main): Init newsym->othersym.
323         (parse_symflags): Make len a size_t.  Adjust uses.
324
325 2016-05-25  H.J. Lu  <hongjiu.lu@intel.com>
326
327         PR binutils/14625
328         * NEWS: Mention --enable-64-bit-archive.
329
330 2016-05-18  Nick Clifton  <nickc@redhat.com>
331
332         PR 20096
333         * objcopy.c (copy_relocations_in_section): Also check for the
334         symbol pointed to by sym_ptr_ptr being NULL.
335
336 2016-05-18  Maciej W. Rozycki  <macro@imgtec.com>
337
338         * testsuite/binutils-all/mips/mixed-mips16-micromips.d: New test.
339         * testsuite/binutils-all/mips/mixed-mips16-micromips.s: New test
340         source.
341         * testsuite/binutils-all/mips/mips.exp: Run the new test.
342
343 2016-05-18  Nick Clifton  <nickc@redhat.com>
344
345         * po/sv.po: Updated Swedish translation.
346
347 2016-05-18  Maciej W. Rozycki  <macro@imgtec.com>
348
349         * readelf.c (dynamic_section_mips_val) <DT_MIPS_RLD_VERSION>
350         <DT_MIPS_LOCAL_GOTNO, DT_MIPS_CONFLICTNO, DT_MIPS_LIBLISTNO>
351         <DT_MIPS_SYMTABNO, DT_MIPS_UNREFEXTNO, DT_MIPS_HIPAGENO>
352         <DT_MIPS_DELTA_CLASS_NO, DT_MIPS_DELTA_INSTANCE_NO>
353         <DT_MIPS_DELTA_RELOC_NO, DT_MIPS_DELTA_SYM_NO>
354         <DT_MIPS_DELTA_CLASSSYM_NO, DT_MIPS_COMPACT_SIZE>: Use the
355         `d_val' rather than `d_ptr' member of the dynamic entry.
356
357 2016-05-17  Maciej W. Rozycki  <macro@imgtec.com>
358
359         * testsuite/lib/binutils-common.exp (supports_gnu_unique): New
360         procedure.
361         * testsuite/binutils-all/objcopy.exp: Use `supports_gnu_unique'
362         with the `strip-10' test.
363
364 2016-05-16  Maciej W. Rozycki  <macro@imgtec.com>
365
366         * testsuite/binutils-all/objcopy.exp: Don't skip the `strip-10'
367         test for the V850.
368
369 2016-05-11  Andrew Bennett  <andrew.bennett@imgtec.com>
370
371         * readelf.c (print_mips_ases): Add DSPR3.
372
373 2016-05-10  Thomas Preud'homme  <thomas.preudhomme@arm.com>
374
375         * readelf.c (display_arm_attribute): Add output for Tag_DSP_extension.
376         (arm_attr_public_tags): Define DSP_extension attribute.
377
378 2016-05-10  Andrew Burgess  <andrew.burgess@embecosm.com>
379
380         * doc/binutils.texi (nm): Update description of --size-sort.
381
382 2016-05-09  Nick Clifton  <nickc@redhat.com>
383
384         PR binutils/20063
385         * readelf.c (get_32bit_section_headers): Warn if an out of range
386         sh_link or sh_info field is encountered.
387         (get_64bit_section_headers): Likewise.
388
389 2016-05-04  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
390
391         * testsuite/lib/binutils-common.exp (is_elf_format): Add avr-*-*.
392
393 2016-05-03  Nick Clifton  <nickc@redhat.com>
394
395         * po/sv.po: Updated Swedish translation.
396
397 2016-04-29  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
398
399         * readelf.c (is_32bit_pcrel_reloc): Return true if reloc is 32-bit
400         PC relocation for AVR target.
401         (is_none_reloc): Return true if reloc is any of AVR diff
402         relocations.
403
404 2016-04-29  Nick Clifton  <nickc@redhat.com>
405
406         PR 19938
407         * readelf.c (get_solaris_segment_type): New function.
408         (get_segment_type): Call it.
409
410 2016-04-28  Nick Clifton  <nickc@redhat.com>
411
412         * po/zh_CN.po: Updated Chinese (simplified) translation.
413
414 2016-04-28  Nick Clifton  <nickc@redhat.com>
415
416         PR target/19722
417         * testsuite/binutils-all/aarch64/illegal.s: New test.
418         * testsuite/binutils-all/aarch64/illegal.d: New test driver.
419
420 2016-04-20  Trevor Saunders  <tbsaunde+binutils@tbsaunde.org>
421
422         * resres.c: Likewise.
423
424 2016-04-15  H.J. Lu  <hongjiu.lu@intel.com>
425
426         * Makefile.in: Regenerated with automake 1.11.6.
427         * aclocal.m4: Likewise.
428         * doc/Makefile.in: Likewise.
429
430 2016-04-14  Nick Clifton  <nickc@redhat.com>
431
432         PR target/19938
433         * testsuite/binutils-all/i386/compressed-1b.d: Allow for the
434         string sections possibly having the SHF_STRINGS flag bit set.
435         * testsuite/binutils-all/i386/compressed-1c.d: Likewise.
436         * testsuite/binutils-all/readelf.s: Likewise.
437         * testsuite/binutils-all/readelf.s-64: Likewise.
438         * testsuite/binutils-all/x86-64/compressed-1b.d: Likewise.
439         * testsuite/binutils-all/x86-64/compressed-1c.d: Likewise.
440
441 2016-04-13  Nick Clifton  <nickc@redhat.com>
442
443         PR target/19938
444         * readelf.c (get_solaris_section_type): New function: Returns the
445         name of Solaris specific section types.
446         (get_solaris_dynamic_type): New function: Return the name of
447         Solaris specific dynamic types.
448         (get_dynamic_type): Use get_solaris_dynamic_type.
449         (get_section_type_name): Use get_solaris_section_type.
450         (get_solaris_symbol_visibility): New function: Returns Solaris
451         specific symbol visibilities.
452         (print_dynamic_symbol): Use get_solaris_symbol_visibility.
453         (process_symbol_table): Likewise.
454
455 2016-04-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
456
457         * dwarf.h (init_dwarf_regnames_s390): Declare.
458         * dwarf.c (dwarf_regnames_s390): New.
459         (init_dwarf_regnames_s390): New.
460         (init_dwarf_regnames): Call it.
461         * objdump.c (dump_dwarf): Likewise.
462
463 2016-04-11  Maciej W. Rozycki  <macro@imgtec.com>
464
465         * testsuite/binutils-all/mips/mips16-undecoded.d: New test.
466         * testsuite/binutils-all/mips/mips16-undecoded.s: New test
467         source.
468         * testsuite/binutils-all/mips/mips.exp: Run the new test.
469
470 2016-04-04  Nick Clifton  <nickc@redhat.com>
471
472         PR 19872
473         * dwarf.c (display_debug_aranges): Skip warning about unrecognised
474         version number if the version is zero.
475
476 2016-03-29  Alan Modra  <amodra@gmail.com>
477
478         * readelf.c (get_data): Use BFD_VMA_FMT to print bfd_size_type vars.
479         (get_dynamic_data): Likewise.
480
481 2016-03-22  Nick Clifton  <nickc@redhat.com>
482
483         PR 19851
484         * dwarf.c (SAFE_BYTE_GET): Replace local dynamic array allocation
485         with run time size check.
486
487         * configure: Regenerate.
488
489 2016-03-21  Andrew Burgess  <andrew.burgess@embecosm.com>
490
491         * readelf.c (decode_ARC_machine_flags): Handle nps400.
492
493 2016-03-21  Andrew Burgess  <andrew.burgess@embecosm.com>
494
495         * readelf.c (get_machine_flags): Move arc processing into...
496         (decode_ARC_machine_flags): ... new function.  Remove use of
497         EF_ARC_CPU_GENERIC, change default case from "generic arc" to
498         "unknown arc".  Merged ABI printing between two machine types.
499
500 2016-03-21  Andrew Burgess  <andrew.burgess@embecosm.com>
501
502         * testsuite/binutils-all/objdump.exp (cpus_expected): Add ARC700
503         to the architecture list.
504
505 2016-03-21  Nick Clifton  <nickc@redhat.com>
506
507         * dlltool.c: Replace use of alloca with call to xmalloc.
508         * dllwrap.c: Likewise.
509         * nlmconv.c: Likewise.
510         * objdump.c: Likewise.
511         * resrc.c: Likewise.
512         * winduni.c: Likewise.
513         * configure: Regenerate.
514
515 2016-03-07  Nick Clifton  <nickc@redhat.com>
516
517         PR binutils/19775
518         * testsuite/binutils-all/ar.exp (proc empty_archive): New proc.
519         Run the new proc.
520         * testsuite/binutils-all/empty: New, empty, file.
521
522 2016-03-04  Matthew Wahab  <matthew.wahab@arm.com>
523
524         * readelf.c (arm_attry_tag_FP_arch): Add "NEON for ARMv8.1".
525
526 2016-02-26  H.J. Lu  <hongjiu.lu@intel.com>
527
528         PR ld/19645
529         * NEWS: Mention --elf-stt-common= for objcopy.
530         * doc/binutils.texi: Document --elf-stt-common= for objcopy.
531         * objcopy.c (do_elf_stt_common): New.
532         (command_line_switch): Add OPTION_ELF_STT_COMMON.
533         (copy_options): Add --elf-stt-common=.
534         (copy_usage): Add --elf-stt-common=.
535         (copy_object): Also check do_elf_stt_common for ELF targets.
536         (copy_file): Handle do_elf_stt_common.
537         (copy_main): Handle OPTION_ELF_STT_COMMON.
538         * readelf.c (apply_relocations): Support STT_COMMON.
539         * testsuite/binutils-all/common-1.s: New file.
540         * testsuite/binutils-all/common-1a.d: Likewise.
541         * testsuite/binutils-all/common-1b.d: Likewise.
542         * testsuite/binutils-all/common-1c.d: Likewise.
543         * testsuite/binutils-all/common-1d.d: Likewise.
544         * testsuite/binutils-all/common-1e.d: Likewise.
545         * testsuite/binutils-all/common-1f.d: Likewise.
546         * testsuite/binutils-all/common-2.s: Likewise.
547         * testsuite/binutils-all/common-2a.d: Likewise.
548         * testsuite/binutils-all/common-2b.d: Likewise.
549         * testsuite/binutils-all/common-2c.d: Likewise.
550         * testsuite/binutils-all/common-2d.d: Likewise.
551         * testsuite/binutils-all/common-2e.d: Likewise.
552         * testsuite/binutils-all/common-2f.d: Likewise.
553         * testsuite/binutils-all/objcopy.exp
554         (objcopy_test_elf_common_symbols): New proc.
555         Run objcopy_test_elf_common_symbols for ELF targets
556
557 2016-02-16  H.J. Lu  <hongjiu.lu@intel.com>
558
559         PR binutils/19647
560         * readelf.c (get_section_type_name): Add a missing break.
561
562 2016-02-16  Claudiu Zissulescu  <claziss@synopsys.com>
563
564         * readelf.c (is_32bit_pcrel_reloc): Add R_ARC_32_PCREL.
565
566 2016-02-15  Nick Clifton  <nickc@redhat.com>
567
568         * readelf.c (get_section_type_name): Add hex prefix to offsets
569         printed for LOPROC and LOOS values.  Ensure that a result is
570         always returned for the V850 target, even when an unrecognised
571         processor specific value is encountered.
572         (process_section_headers): Display key values in the order in
573         which they appear to the user.  Add the "C (compressed)" value to
574         the list.
575
576 2016-02-12  H.J. Lu  <hongjiu.lu@intel.com>
577
578         * doc/binutils.texi: Fix a typo.
579
580 2016-02-05  Cupertino Miranda  <Cupertino.Miranda@synopsys.com>
581
582         * testsuite/binutils-all/objdump.exp: Update expected default
583         architecture value for ARC binaries.
584
585 2016-02-02  H.J. Lu  <hongjiu.lu@intel.com>
586
587         PR binutils/19547
588         * testsuite/binutils-all/objcopy.exp
589         (objcopy_test_without_global_symbol): New proc.
590         Run objcopy_test_without_global_symbol.
591         * testsuite/binutils-all/pr19547.c: New file.
592
593 2016-01-28  H.J. Lu  <hongjiu.lu@intel.com>
594
595         PR binutils/19523
596         * Makefile.am (check-DEJAGNU): Pass CC and CC_FOR_BUILD to
597         runtest.
598         * Makefile.in: Regenerated.
599         * testsuite/binutils-all/compress.exp (test_gnu_debuglink): New
600         proc.
601         Run test_gnu_debuglink for native ELF build.
602
603 2016-01-20  Nick Clifton  <nickc@redhat.com>
604
605         PR 19495
606         * testsuite/binutils-all/dlltool.exp: Fix tests for targets which
607         do not support inserting leading underscores.
608
609 2016-01-20  Mickael Guene  <mickael.guene@st.com>
610
611         * readelf.c (get_elf_section_flags): Display y letter for section
612         with SHF_ARM_NOREAD section flag in readelf section output.
613         (process_section_headers): Add y letter in readelf section output
614         key mapping for ARM architecture.
615         * objdump.c (dump_section_header): Display NOREAD attributes as
616         well.
617         * doc/binutils.texi (objdump): Note that it is correct for
618         sections to have both the READONLY and NOREAD attributes.
619
620 2016-01-19  John Baldwin  <jhb@FreeBSD.org>
621
622         * readelf.c (get_freebsd_elfcore_note_type): Remove unused variable.
623
624 2016-01-19  John Baldwin  <jhb@FreeBSD.org>
625
626         * readelf.c (get_freebsd_elfcore_note_type): New
627         (process_note): Add support for FreeBSD core notes.
628
629 2016-01-18  Miranda Cupertino  <Cupertino.Miranda@synopsys.com>
630             Zissulescu Claudiu  <Claudiu.Zissulescu@synopsys.com>
631
632         * readelf.c (get_machine_flags): Add support for newer ARC ELF
633         header flags.
634
635 2016-01-18  Alan Modra  <amodra@gmail.com>
636
637         * configure: Regenerate.
638
639 2016-01-17  Alan Modra  <amodra@gmail.com>
640
641         * configure: Regenerate.
642
643 2016-01-17  Alan Modra  <amodra@gmail.com>
644
645         * testsuite/lib/binutils-common.exp (is_elf_format): Return true
646         for m68hc11/12 and xgate triples.
647
648 2016-01-17  Alan Modra  <amodra@gmail.com>
649
650         * readelf.c (is_32bit_abs_reloc): Add R_M68HC11_32.
651
652 2016-01-01  Alan Modra  <amodra@gmail.com>
653
654         Update year range in copyright notice of all files.
655
656 For older changes see ChangeLog-2015 and testsuite/ChangeLog-1215
657 \f
658 Copyright (C) 2016 Free Software Foundation, Inc.
659
660 Copying and distribution of this file, with or without modification,
661 are permitted in any medium without royalty provided the copyright
662 notice and this notice are preserved.
663
664 Local Variables:
665 mode: change-log
666 left-margin: 8
667 fill-column: 74
668 version-control: never
669 End: