c2f69e9c0fdff05c5278aa2945cb3f5476eea1d3
[platform/upstream/binutils.git] / binutils / ChangeLog
1 2014-11-17  Nick Clifton  <nickc@redhat.com>
2
3         Apply trunk patches:
4
5         2014-11-14  Nick Clifton  <nickc@redhat.com>
6
7         PR binutils/17512
8         * dwarf.c (get_encoded_value): Add an 'end' parameter.  Change the
9         'data' parameter to a double pointer and return the updated value.
10         (decode_location_expression): Update call to get_encoded_value.
11         (frame_need_space): Handle the case where one or both of the
12         mallocs fails.
13         (read_cie): Initialise the cie pointer, even if the read fails.
14         (display_debug_frames): Warn if the calculated block_end is before
15         the start of the block.  Break the loop if the CIE could not be
16         read.  Update call to get_encoded_value.  Warn if the read CFA
17         expressions are too big.
18
19         2014-11-13  Nick Clifton  <nickc@redhat.com>
20
21         PR binutils/17531
22         * readelf.c (process_version_sections): If the read of the version
23         def information fails, make sure that the external verdef data is
24         not used.
25         (get_dynamic_data): Do not attempt to allocate memory for more
26         dynamic data than there is in the file.  If the read fails, free
27         the allocated buffer.
28         (process_symbol_table): Do not print dynamic information if we
29         were unable to read the dynamic symbol table.
30         (print_gnu_note): Do not print the note if the descsz is too
31         small.
32
33         2014-11-12  Nick Clifton  <nickc@redhat.com>
34
35         PR binutils/17512
36         * dwarf.c (read_and_display_attr_value): Check that we do not read
37         past end.
38         (display_debug_pubnames_worker): Add range checks.
39         (process_debug_info): Check for invalid pointer sizes.
40         (display_loc_list): Likewise.
41         (display_loc_list_dwo): Likewise.
42         (display_debug_ranges): Likewise.
43         (display_debug_aranges): Check for invalid address size.
44         (read_cie): Add range checks.  Replace call strchr with while loop.
45         * objdump.c (dump_dwarf): Replace abort with a warning message.
46         (print_section_stabs): Improve range checks.
47         * rdcoff.c (coff_get_slot): Use long for indx parameter type.
48         Add check for an excesively large index.
49         * rddbg.c (read_section_stabs_debugging_info): Zero terminate the
50         string table.  Avoid walking off the end of the stabs data.
51         * stabs.c (parse_stab_string): Add check for a NULL name.
52
53         2014-11-11  Nick Clifton  <nickc@redhat.com>
54
55         PR binutils/17531
56         * binutils/readelf.c (dynamic_nent): Change type to size_t.
57         (slurp_rela_relocs): Use size_t type for nrelas.
58         (slurp_rel_relocs): Likewise.
59         (get_program_headers): Improve out of memory error message.
60         (get_32bit_section_headers): Likewise.
61         (get_32bit_section_headers): Likewise.
62         (get_64bit_section_headers): Likewise.
63         (get_32bit_elf_symbols): Likewise.
64         (get_64bit_elf_symbols): Likewise.
65         (process_section_groups): Likewise.
66         (get_32bit_dynamic_section): Likewise.
67         (get_64bit_dynamic_section): Likewise.
68         (process_dynamic_section): Likewise.
69         (process_version_sections): Likewise.
70         (get_symbol_index_type): Likewise.
71         (process_mips_specific): Likewise.
72         (process_corefile_note_segment): Likewise.
73         (process_version_sections): Use size_t type for total.
74         (get_dynamic_data): Change type of number parameter to size_t.
75         Improve out of memory error messages.
76         (process_symbol_table): Change type of nbuckets and nchains to
77         size_t.  Skip processing of sections headers if there are none.
78         Improve out of memory error messages.
79
80         2014-11-11  Nick Clifton  <nickc@redhat.com>
81
82         PR binutils/17531
83         * readelf.c (display_arm_attribute): Avoid reading off the end of
84         the buffer when processing a Tag_nodefaults.
85
86         2014-11-10  Nick Clifton  <nickc@redhat.com>
87
88         PR binutils/17531
89         * readelf.c (ia64_process_unwind): Replace assertion with an error
90         message.  Add range checking for group section indicies.
91         (hppa_process_unwind): Replace assertion with an error message.
92         (process_syminfo): Likewise.
93         (decode_arm_unwind_bytecode): Add range checking.
94         (dump_section_as_strings): Add more string range checking.
95         (display_tag_value): Likewise.
96         (display_arm_attribute): Likewise.
97         (display_gnu_attribute): Likewise.
98         (display_tic6x_attribute): Likewise.
99         (display_msp430x_attribute): Likewise.
100
101         2014-11-10  Nick Clifton  <nickc@redhat.com>
102
103         PR binutils/17552
104         * objcopy.c (copy_archive): Clean up temporary files even if an
105         error occurs.
106
107         2014-11-07  Nick Clifton  <nickc@redhat.com>
108
109         PR binutils/17531
110         * readelf.c (get_data): Avoid allocating memory when we know that
111         the read will fail.
112         (find_section_by_type): New function.
113         (get_unwind_section_word): Check for invalid symbol indicies.
114         Check for invalid reloc types.
115         (get_32bit_dynamic_section): Add range checks.
116         (get_64bit_dynamic_section): Add range checks.
117         (process_dynamic_section): Check for a corrupt time value.
118         (process_symbol_table): Add range checks.
119         (dump_section_as_strings): Add string length range checks.
120         (display_tag_value): Likewise.
121         (display_arm_attribute): Likewise.
122         (display_gnu_attribute): Likewise.
123         (display_tic6x_attribute): Likewise.
124         (display_msp430x_attribute): Likewise.
125         (process_mips_specific): Add range check.
126
127         2014-11-06  Nick Clifton  <nickc@redhat.com>
128
129         PR binutils/17552, binutils/17533
130         * bucomm.c (is_valid_archive_path): New function.  Returns false
131         for absolute pathnames and pathnames that include /../.
132         * bucomm.h (is_valid_archive_path): Add prototype.
133         * ar.c (extract_file): Use new function to check for valid
134         pathnames when extracting files from an archive.
135         * objcopy.c (copy_archive): Likewise.
136         * doc/binutils.texi: Update documentation to mention the
137         limitation on pathname of archive members.
138
139         2014-11-05  Nick Clifton  <nickc@redhat.com>
140
141         PR binutils/17531
142         * readelf.c (printable_section_name): New function.
143         (printable_section_name_from_index): New function.
144         (dump_relocations): Use new function.
145         (process_program_headers, get_32bit_elf_symbols,
146         (get_64bit_elf_symbols, process_section_headers,
147         (process_section_groups, process_relocs, ia64_process_unwind,
148         (hppa_process_unwind, get_unwind_section_word, decode_arm_unwind,
149         (arm_process_unwind, process_version_sections,
150         (process_symbol_table, apply_relocations, get_section_contents,
151         (dump_section_as_strings, dump_section_as_bytes,
152         (display_debug_section, process_attributes, process_mips_specific,
153         (process_mips_specific process_gnu_liblist): Likewise.
154         (get_unwind_section_word): Check for a missing symbol table.
155         Replace aborts with error messages.
156         (arm_process_unwind): Check for a missing string table.
157         (process_attributes): Check for an attribute length that is too
158         small.
159         (process_mips_specific): Check for a corrupt GOT symbol offset.
160
161         2014-11-05  Nick Clifton  <nickc@redhat.com>
162
163         PR binutils/17533
164         * bucomm.c (is_valid_archive_path): New function.
165         * bucomm.h (is_valid_archive_path): Prototype it.
166         * ar.c (extract_file): Call is_valid_archive_path to verify a
167         member filename before extracting it.
168         * objcopy.c (copy_archive): Likewise.
169
170         2014-11-04  Nick Clifton  <nickc@redhat.com>
171
172         PR binutils/17531
173         * readelf.c (get_data): If the reason parameter is null, do not
174         print any error messages.
175         (get_32bit_section_headers): Verify section header entry size
176         before reading in the section headers.
177         (get_64bit_section_headers): Likewise.
178         (process_section_headers): Pass FALSE to get_section_headers.
179         (get_file_header): Pass TRUE to get_section_headers.
180         (process_dynamic_section): Change an assert to an error message.
181         (process_symbol_table): Handle corrupt histograms.
182         (get_32bit_program_headers): Verify program header entry size
183         before reading in the program headers.
184         (get_64bit_program_headers): Likewise.
185         (get_unwind_section_word): Do nothing if no section was provided.
186         Fail if the offset is outside of the section.
187         (print_dynamic_symbol): Catch out of range symbol indicies.
188         (process_mips_specific): Likewise.
189         (process_attributes): Make sure that there is enough space left in
190         the section before attempting to read the length of the next
191         attribute.
192
193         2014-11-03  Nick Clifton  <nickc@redhat.com>
194
195         PR binutils/17512
196         * objdump.c (slurp_symtab): Fail gracefully if the table could not
197         be read.
198         (dump_relocs_in_section): Likewise.
199
200 2014-11-11  Nick Clifton  <nickc@redhat.com>
201
202         * po/fr.po: Updated French translation.
203
204 2014-11-03  Nick Clifton  <nickc@redhat.com>
205
206         * po/fi.po: Updated Finnish translation.
207         * po/sv.po: Updated Swedish translation.
208
209 2014-10-31  Nick Clifton  <nickc@redhat.com>
210
211         Apply trunk patch:
212
213         2014-10-31  Nick Clifton  <nickc@redhat.com>
214         * strings.c: Add new command line option --data to only scan the
215         initialized, loadable data secions of binaries.  Choose the
216         default behaviour of --all or --data based upon a configure
217         option.
218         * doc/binutils.texi (strings): Update documentation.  Include
219         description  of why the --data option might be unsafe.
220         * configure.ac: Add new option --disable-default-strings-all which
221         restores the old behaviour of strings using --data by default.  If
222         the option is not used make strings use --all by default.
223         * NEWS: Mention the new behaviour of strings.
224         * configure: Regenerate.
225         * config.in: Regenerate.
226
227 2014-10-30  Nick Clifton  <nickc@redhat.com>
228
229         Apply trunk patch:
230
231         2014-10-30  Nick Clifton  <nickc@redhat.com>
232         * readelf.c (CHECK_ENTSIZE_VALUES): Rewrite error message so that
233         there is a single string for translation.
234         (dynamic_section_mips_val): Likewise.
235
236 2014-10-29  Nick Clifton  <nickc@redhat.com>
237
238         * po/bg.po: Updated Bulgarian translation.
239         * po/sr.po: New Serbian translation.
240         * po/sv.po: Updated Swedish translation.
241
242 2014-10-28  Matthew Fortune  <matthew.fortune@imgtec.com>
243
244         Apply trunk patch:
245
246         2014-10-22  Matthew Fortune  <matthew.fortune@imgtec.com>
247         * readelf.c (print_mips_ases): Print unknown ASEs.
248         (print_mips_isa_ext): Print the value of an unknown extension.
249
250 2014-10-15  Tristan Gingold  <gingold@adacore.com>
251
252         * configure: Regenerate.
253
254 2014-10-14  Tristan Gingold  <gingold@adacore.com>
255
256         * NEWS: Add marker for 2.25.
257
258 2014-10-14  Alan Modra  <amodra@gmail.com>
259
260         PR 17453
261         * dwarf.c (read_leb128): Avoid signed overflow.
262         (read_debug_line_header): Likewise.
263
264 2014-10-14  Alan Modra  <amodra@gmail.com>
265
266         PR 17453
267         * readelf.c (process_program_headers): Correct fscanf format used
268         for interpreter.
269
270 2014-10-09  Jose E. Marchesi  <jose.marchesi@oracle.com>
271
272         * readelf.c (display_sparc_hwcaps2): New function.
273         (display_sparc_gnu_attribute): Call `display_sparc_hwcaps2' when
274         handling `Tag_GNU_Sparc_HWCAPS2' attributes.
275
276 2014-09-22  Alan Modra  <amodra@gmail.com>
277
278         PR 16563
279         * dwarf.c (GET): Remove semicolon.
280         (read_cie): New function, extracted from..
281         (display_debug_frames): ..here.  Correctly handle signed offset
282         from FDE to CIE in .eh_frame.  Decode forward referenced CIEs too.
283
284 2014-09-16  Nick Clifton  <nickc@redhat.com>
285
286         * readelf.c (display_arm_attribute): Use unsigned int type for
287         tag, val and type variables.
288
289 2014-09-16  Kuan-Lin Chen  <kuanlinchentw@gmail.com>
290
291         * readelf.c (decode_NDS32_machine_flags): Display ABI2 FP+.
292
293 2014-09-15  Andrew Bennett  <andrew.bennett@imgtec.com>
294             Matthew Fortune  <matthew.fortune@imgtec.com>
295
296         * readelf.c (get_machine_flags): Add support for mips32r6 and
297         mips64r6.
298
299 2014-09-01  Jon TURNEY  <jon.turney@dronecode.org.uk>
300
301         * objcopy.c (is_nondebug_keep_contents_section): Change
302         '.build-id' to '.buildid'.
303
304 2014-08-22  Richard Henderson  <rth@redhat.com>
305
306         * dwarf.h (init_dwarf_regnames_aarch64): Declare.
307         * dwarf.c (dwarf_regnames_aarch64): New.
308         (init_dwarf_regnames_aarch64): New.
309         (init_dwarf_regnames): Call it.
310         * objdump.c (dump_dwarf): Likewise.
311
312 2014-08-19  Alan Modra  <amodra@gmail.com>
313
314         * configure: Regenerate.
315
316 2014-08-14  Alan Modra  <amodra@gmail.com>
317
318         * configure.ac: Move ACX_LARGEFILE after LT_INIT.
319         * config.in: Regenerate.
320         * configure: Regenerate.
321
322 2014-07-29  Matthew Fortune  <matthew.fortune@imgtec.com>
323
324         * readelf.c (get_mips_segment_type): Display name for PT_MIPS_ABIFLAGS.
325         (get_mips_section_type_name): Display name for SHT_MIPS_ABIFLAGS.
326         (display_mips_gnu_attribute): Abstracted fp abi printing to...
327         (print_mips_fp_abi_value): New static function. Handle new FP ABIs.
328         (print_mips_ases, print_mips_isa_ext): New static functions.
329         (get_mips_reg_size): Likewise.
330         (process_mips_specific): Display abiflags data.
331
332 2014-07-28  Alan Modra  <amodra@gmail.com>
333
334         PR 13227
335         * nm.c (filter_symbols): Warn on __gnu_lto_slim.
336
337 2014-07-07  Nick Clifton  <nickc@redhat.com>
338
339         * readelf.c (get_symbol_type): Revert accidental change to
340         detection of thumb function symbols.
341
342 2014-07-04  Alan Modra  <amodra@gmail.com>
343
344         * configure.ac: Rename from configure.in.
345         * Makefile.in: Regenerate.
346         * config.in: Regenerate.
347         * doc/Makefile.in: Regenerate.
348
349 2014-07-04  Alan Modra  <amodra@gmail.com>
350
351         * configure.in: Include bfd/version.m4.
352         (AC_INIT, AM_INIT_AUTOMAKE): Use modern form.
353         (BFD_VERSION): Delete.
354         * Makefile.am (CONFIG_STATUS_DEPENDENCIES): Remove bfd/configure.in.
355         * configure: Regenerate.
356         * Makefile.in: Regenerate.
357         * doc/Makefile.in: Regenerate.
358
359 2014-07-03  Tristan Gingold  <gingold@adacore.com>
360
361         * doc/binutils.texi: Clarify addr2line output.
362
363 2014-07-01  Alan Modra  <amodra@gmail.com>
364
365         * objdump.c (dump_bfd_header): Don't print HAS_LOAD_PAGE.
366
367 2014-06-26  Erik Akermann  <kurterikackermann@gmail.com>
368
369         * strings.c: Add -w/--include-all-whitespace option to include any
370         whitespace character in the displayed strings.
371         * NEWS: Mention the new feature.
372         * doc/binutils.texi (strings): Document the new command line
373         option.
374
375 2014-06-26  Nick Clifton  <nickc@redhat.com>
376
377         * readelf.c (process_note_sections): If there are no note sections
378         try processing note segments instead.
379
380 2014-06-17  Anton Lavrentiwev  <lavr@ncbi.nim.nih.gov>
381
382         PR binutils/16923
383         * rcparse.y (fixedverinfo): Prevent large version numbers from
384         corrupting other values.
385
386 2014-06-09  Romain Chastenet  <romain.chastenet@free.fr>
387
388         PR binutils/16252
389         * dwarf.c (display_debug_frames): Remember the state of the
390         cfa_offset, cfa_reg, ra and cfa_exp field
391
392 2014-06-05  Joel Brobecker  <brobecker@adacore.com>
393
394         * Makefile.am (CONFIG_STATUS_DEPENDENCIES): Add dependency on
395         bfd's development.sh.
396         * Makefile.in, configure: Regenerate.
397
398 2014-05-16  Jon Turney  <jon.turney@dronecode.org.uk>
399
400         * objcopy.c (is_nondebug_keep_contents_section): New function.
401         (setup_section): Use it.
402
403 2014-05-16  Kaushik Phata  <Kaushik.Phatak@kpit.com>
404
405         * readelf.c (get_machine_flags): Handle RL78 64-bit doubles flag.
406
407 2014-05-02  Alan Modra  <amodra@gmail.com>
408
409         * emul_aix.c: Update bfd target vector naming.
410         * testsuite/binutils-all/objcopy.exp: Likewise.
411
412 2014-04-24  Christian Svensson  <blue@cmd.nu>
413
414         * MAINTAINERS: Add myself and Stefan as OR1K maintainers.
415
416 2014-04-23  Andrew Bennett  <andrew.bennett@imgtec.com>
417
418         * doc/binutils.texi: Document the disassemble MIPS XPA instructions
419         command line option.
420
421 2014-04-22  Christian Svensson  <blue@cmd.nu>
422
423         * readelf.c: Remove openrisc and or32 support.  Add support for or1k.
424
425 2014-04-18  Tristan Gingold  <gingold@adacore.com>
426
427         * od-macho.c (dump_section_map): Adjust as load commands
428         are now chained.
429         (dump_load_command, dump_section_content): Likewise.
430
431 2014-04-16  Tristan Gingold  <gingold@adacore.com>
432
433         * od-macho.c (OPT_DYLD_INFO): New macro.
434         (options): Add entry for dyld_info.
435         (mach_o_help): Likewise.
436         (load_and_dump, dump_dyld_info_rebase, dump_dyld_info_bind)
437         (dump_dyld_info_export_1, dump_dyld_info_export): New functions.
438         (bfd_mach_o_dyld_rebase_type_name): New array.
439         (export_info_data): New struct.
440         (dump_dyld_info): Add verbose argument.  Dump rebase, bind and
441         exports data.
442         (dump_load_command): Adjust dump_dyld_info call.
443         (mach_o_dump): Handle dyld_info.
444
445 2014-04-16  Tristan Gingold  <gingold@adacore.com>
446
447         * od-macho.c (dump_header): Display sizeofcmds in decimal too.
448         (dump_segment): Reformat output.
449         (dump_dyld_info): Also display end offsets.
450         (dump_load_command): Add IDX argument, display commands size
451         and offset, reformat display.
452         (dump_load_commands): Adjust for added argument.
453
454 2014-04-07  Alan Modra  <amodra@gmail.com>
455
456         PR binutils/16811
457         * objcopy.c (copy_object): Error if no sections.
458
459 2014-04-03  Markus Trippelsdorf  <markus@trippelsdorf.de>
460
461         PR binutils/14698
462         ar.c: Set plugin_target early if plugins are supported.
463         nm.c: Likewise.
464
465 2014-04-03  Tristan Gingold  <gingold@adacore.com>
466
467         * od-macho.c (printf_uint64): New function.
468         (dump_load_command, dump_obj_compact_unwind): Use it.
469         (dump_exe_compact_unwind): Display personality functions.
470
471 2014-04-02  Tristan Gingold  <gingold@adacore.com>
472
473         * od-macho.c (OPT_TWOLEVEL_HINTS): New macro.
474         (options): Add entry for twolevel_hints.
475         (dump_data_in_code): Fix error message.
476         (dump_twolevel_hints): New function.
477         (dump_load_command): Handle prebound dylib, prebind cksum
478         and twolevel hints.
479         (mach_o_dump): Handle twolevel hints.
480
481 2014-04-01  Tristan Gingold  <gingold@adacore.com>
482
483         * od-macho.c (OPT_DATA_IN_CODE): New macro.
484         (options): Add entry for data in code.
485         (mach_o_help): Ditto.
486         (data_in_code_kind_name): New array.
487         (dump_data_in_code): New function.
488         (dump_load_command): Handle data in code.
489         (mach_o_dump): Ditto.
490         (dump_header): Display a terminal newline.
491
492 2014-03-27  Tristan Gingold  <gingold@adacore.com>
493
494         * od-macho.c (dump_load_command): Display value for
495         BFD_MACH_O_LC_DYLD_ENVIRONMENT.  Handle BFD_MACH_O_LC_DATA_IN_CODE
496         and BFD_MACH_O_LC_DYLIB_CODE_SIGN_DRS.
497
498 2014-03-27  Tristan Gingold  <gingold@adacore.com>
499
500         * od-macho.c (OPT_FUNCTION_STARTS): New macro.
501         (options): Add entry for function_starts.
502         (mach_o_help): Ditto.
503         (disp_segment_prot): New function.
504         (dump_section_map): Call disp_segment_prot.
505         (dump_function_starts): New function.
506         (dump_obj_compact_unwind): Fix ouput indentation.
507         (dump_exe_compact_unwind): Fix ouput indentation.
508         (mach_o_dump): Handle function_starts.
509
510 2014-03-26  Tristan Gingold  <gingold@adacore.com>
511
512         * od-macho.c (bfd_mach_o_cpu_name): Add BFD_MACH_O_CPU_TYPE_ARM64.
513
514 2014-03-24  Tristan Gingold  <gingold@adacore.com>
515
516         * objdump.c (load_specific_debug_section): Set address of section.
517
518 2014-03-24  Tristan Gingold  <gingold@adacore.com>
519
520         * od-macho.c (dump_unwind_encoding_x86): Set the factor.
521         (dump_exe_compact_unwind): Change the condition.  Improve
522         indentation.
523
524 2014-03-20  Nick Clifton  <nickc@redhat.com>
525
526         * readelf.c (process_version_sections): Fix off-by-one error in
527         previous delta.
528
529 2014-03-19  Nick Clifton  <nickc@redhat.com>
530
531         PR binutils/16723
532         * readelf.c (process_version_sections): Prevent an infinite loop
533         when the vn_next field is zero but there are still entries to be
534         processed.
535
536 2014-03-17  Tristan Gingold  <gingold@adacore.com>
537
538         * od-macho.c (dump_section_header): Renames of dump_section.
539         (dump_segment): Adjust after renaming.
540         (OPT_COMPACT_UNWIND): Define.
541         (options): Add compact unwind.
542         (mach_o_help): Document compact_unwind.
543         (unwind_x86_64_regs, unwind_x86_regs): New arrays.
544         (dump_unwind_encoding_x86, dump_unwind_encoding)
545         (dump_obj_compact_unwind, dump_exe_compact_unwind)
546         (dump_section_content): New functions.
547         (mach_o_dump): Handle compact unwind.
548
549 2014-03-17  Tristan Gingold  <gingold@adacore.com>
550
551         * od-macho.c (dump_load_command): Handle lazy load dylib.
552
553 2014-03-14  Anthony Green  <green@moxielogic.com>
554
555         * objcopy.c (copy_object): Check fwrite return code.
556
557 2014-03-14  Meador Inge  <meadori@codesourcery.com>
558
559         * dwarf.c (strnlen): Move prototype ...
560         * sysdep.h (strnlen): ... to here.
561
562 2014-03-12  Nick Clifton  <nickc@redhat.com>
563
564         PR binutils/16652
565         * doc/binutils.texi (ar cmdline): Move --plugin command line
566         option to after the command option.
567
568 2014-03-12  Dmitry Gorbachev  <d.g.gorbachev@gmail.com>
569
570         PR binutils/16567
571         * deflex.l: Add noinput and nounput options.
572
573 2014-03-12  Alan Modra  <amodra@gmail.com>
574
575         * Makefile.in: Regenerate.
576         * doc/Makefile.in: Regenerate.
577
578 2014-03-06  Nick Clifton  <nickc@redhat.com>
579
580         PR binutils/16664
581         * readelf.c (process_attributes): Add checks for corrupt
582         attribute section names.
583
584 2014-03-05  Alan Modra  <amodra@gmail.com>
585
586         Update copyright years.
587
588 2014-03-03  Alan Modra  <amodra@gmail.com>
589
590         * README: Add "Copyright Notices" paragraph.
591
592 2014-02-11  Cary Coutant  <ccoutant@google.com>
593
594         * binutils/dwarf.c (read_and_display_attr_value): Don't warn
595         for zero-length attribute value.
596
597 2014-02-10  Alan Modra  <amodra@gmail.com>
598
599         * po/binutils.pot: Regenerate.
600
601 2014-02-06  Andrew Pinski  <apinski@cavium.com>
602
603         * readelf.c  (get_machine_flags): Handle E_MIPS_MACH_OCTEON3 case.
604
605 2014-02-06  Cary Coutant  <ccoutant@google.com>
606
607         PR binutils/16444
608         * readelf.c (print_gnu_note): Add support for NT_GNU_GOLD_VERSION.
609
610 2014-01-08  H.J. Lu  <hongjiu.lu@intel.com>
611
612         * version.c (print_version): Update copyright year to 2014.
613
614 2014-01-07  Tom Tromey  <tromey@redhat.com>
615
616         * bucomm.c (fatal, non_fatal): Replace obsolete VA_* macros with
617         stdarg macros.
618         * dlltool.c (inform): Replace obsolete VA_* macros with stdarg
619         macros.
620         * dllwrap.c (inform, warn): Replace obsolete VA_* macros with
621         stdarg macros.
622
623 2014-01-07  Tom Tromey  <tromey@redhat.com>
624
625         * coffgrok.h (coff_ofile): Don't use PARAMS.
626         * nlmheader.y (strerror): Don't use PARAMS.
627
628 For older changes see ChangeLog-2013
629 \f
630 Copyright (C) 2014 Free Software Foundation, Inc.
631
632 Copying and distribution of this file, with or without modification,
633 are permitted in any medium without royalty provided the copyright
634 notice and this notice are preserved.
635
636 Local Variables:
637 mode: change-log
638 left-margin: 8
639 fill-column: 74
640 version-control: never
641 End: