objcopy memory leak
[deliverable/binutils-gdb.git] / binutils / ChangeLog
1 2017-11-15 Alan Modra <amodra@gmail.com>
2
3 PR 22426
4 * objcopy.c (copy_main): Free tmpname.
5
6 2017-11-15 Nick Clifton <nickc@redhat.com>
7
8 PR 15152
9 * dwarf.h (enum dwarf_section_display_enum): Add gnu_debuglink,
10 gnu_debugaltlink and separate_debug_str.
11 (struct dwarf_section): Add filename field.
12 Add prototypes for load_separate_debug_file, close_debug_file and
13 open_debug_file.
14 * dwarf.c (do_debug_links): New.
15 (do_follow_links): New.
16 (separate_debug_file, separate_debug_filename): New.
17 (fetch_alt_indirect_string): New function. Retrieves a string
18 from the debug string table in the separate debug info file.
19 (read_and_display_attr_value): Use it with DW_FORM_GNU_strp_alt.
20 (load_debug_section_with_follow): New function. Like
21 load_debug_section, but if the first attempt fails, then tries
22 again in the separate debug info file.
23 (introduce): New function.
24 (process_debug_info): Use load_debug_section_with_follow and
25 introduce.
26 (load_debug_info): Likewise.
27 (display_debug_lines_raw): Likewise.
28 (display_debug_lines_decoded): Likewise.
29 (display_debug_macinfo): Likewise.
30 (display_debug_macro): Likewise.
31 (display_debug_abbrev): Likewise.
32 (display_debug_loc): Likewise.
33 (display_debug_str): Likewise.
34 (display_debug_aranges): Likewise.
35 (display_debug_addr); Likewise.
36 (display_debug_frames): Likewise.
37 (display_gdb_index): Likewise.
38 (process_cu_tu_index): Likewise.
39 (load_cu_tu_indexes): Likewise.
40 (display_debug_links): New function. Displays the contents of a
41 .gnu_debuglink or .gnu_debugaltlink section.
42 (calc_gnu_debuglink_ctc32):New function. Calculates a CRC32
43 value.
44 (check_gnu_debuglink): New function. Checks the CRC of a
45 potential separate debug info file.
46 (parse_gnu_debuglink): New function. Reads a CRC value out of a
47 .gnu_debuglink section.
48 (check_gnu_debugaltlink): New function.
49 (parse_gnu_debugaltlink): New function. Reads the build-id value
50 out of a .gnu_debugaltlink section.
51 (load_separate_debug_info): New function. Finds and loads a
52 separate debug info file.
53 (load_separate_debug_file): New function. Attempts to find and
54 follow a link to a separate debug info file.
55 (free_debug_memory): Free the separate debug info file
56 information.
57 (opts_table): Add "follow-links" and "links".
58 (dwarf_select_sections_by_letters): Add "k" and "K".
59 (debug_displays): Reformat. Add .gnu-debuglink and
60 .gnu_debugaltlink.
61 Add an extra entry for .debug_str in a separate debug info file.
62 * doc/binutils.texi: Move description of debug dump features
63 common to both readelf and objdump into...
64 * objdump.c (usage): Add -Wk and -WK.
65 (load_specific_debug_section): Initialise the filename field in
66 the dwarf_section structure.
67 (close_debug_file): New function.
68 (open_debug_file): New function.
69 (dump_dwarf): Load and dump the separate debug info sections.
70 * readelf.c (struct filedata): New structure. Contains various
71 variables that used to be global:
72 (current_file_size, string_table, string_table_length, elf_header)
73 (section_headers, program_headers, dump_sects, num_dump_sects):
74 Move into filedata structure.
75 (cmdline): New global variable. Contains list of sections to dump
76 by number, as specified on the command line.
77 Add filedata parameter to most functions.
78 (load_debug_section): Load the string table if it has not already
79 been retrieved.
80 (close_file): New function.
81 (close_debug_file): New function.
82 (open_file): New function.
83 (open_debug_file): New function.
84 (process_object): Process sections in any separate debug info files.
85 * doc/debug.options.texi: New file. Add description of =links and
86 =follow-links options.
87 * NEWS: Mention the new feature.
88 * elfcomm.c: Have the byte get functions take a const pointer.
89 * elfcomm.h: Update prototypes.
90 * testsuite/binutils-all/dw5.W: Update expected output.
91 * testsuite/binutils-all/objdump.WL: Update expected output.
92 * testsuite/binutils-all/objdump.exp: Add test of -WK and -Wk.
93 * testsuite/binutils-all/readelf.exp: Add test of -wK and -wk.
94 * testsuite/binutils-all/readelf.k: New file.
95 * testsuite/binutils-all/objdump.Wk: New file.
96 * testsuite/binutils-all/objdump.WK2: New file.
97 * testsuite/binutils-all/linkdebug.s: New file.
98 * testsuite/binutils-all/debuglink.s: New file.
99
100 2017-11-10 Jim Wilson <jimw@sifive.com>
101
102 * testsuite/binutils-all/objdump.exp: Expect the debug_ranges test to
103 pass.
104
105 2017-11-07 Jim Wilson <jimw@sifive.com>
106
107 * MAINTAINERS (RISC-V): Fix typo in my email address.
108
109 2017-11-07 Palmer Dabbelt <palmer@sifive.com>
110
111 * MAINTAINERS (RISC-V): Add Jim Wilson as a maintainer.
112 Clean up Andrew's entry (remove trailing space, add tabs).
113 Change Palmer's email address, and clean up entry (add tabs).
114
115 2017-11-07 Alan Modra <amodra@gmail.com>
116
117 * dwarf.c (read_uleb128): Properly pluralize messages.
118 (display_debug_lines_raw, display_debug_loc): Likewise.
119 (display_debug_names, process_cu_tu_index): Likewise.
120 * od-macho.c (dump_code_signature_superblob): Likewise.
121 * readelf.c (process_program_headers): Likewise.
122 (process_section_header, process_relocs): Likewise.
123 (hppa_process_unwind, arm_process_unwind): Likewise.
124 (process_dynamic_section, process_version_sections): Likewise.
125 (process_symbol_table, process_syminfo): Likewise.
126 (apply_relocations, process_mips_specific): Likewise.
127 (process_gnu_liblist, process_notes_at): Likewise.
128 (process_archive): Likewise.
129 * testsuite/binutils-all/dw2-1.W,
130 * testsuite/binutils-all/dw2-3.W,
131 * testsuite/binutils-all/dw2-3gabi.W,
132 * testsuite/binutils-all/dw5.S,
133 * testsuite/binutils-all/dw5.W,
134 * testsuite/binutils-all/i386/compressed-1a.d,
135 * testsuite/binutils-all/libdw2-compressedgabi.out,
136 * testsuite/binutils-all/objdump.W,
137 * testsuite/binutils-all/readelf.r,
138 * testsuite/binutils-all/readelf.r-64,
139 * testsuite/binutils-all/x86-64/compressed-1a.d: Update
140 for pluralization fixes.
141
142 2017-11-07 Alan Modra <amodra@gmail.com>
143
144 * sysdep.h (textdomain, bindtextdomain): Use safer "do nothing".
145 (ngettext, dngettext, dcngettext): Define when !ENABLE_NLS.
146
147 2017-11-03 Claudiu Zissulescu <claziss@synopsys.com>
148
149 * doc/binutils.texi (ARC): Update disassembler options.
150 * testsuite/binutils-all/arc/hexprint.s: New file.
151 * testsuite/binutils-all/arc/objdump.exp: Test hex printing
152 feature.
153
154 2017-11-03 Mingi Cho <mgcho.minic@gmail.com>
155 Nick Clifton <nickc@redhat.com>
156
157 PR 22386
158 * dwarf.c (read_cie): Use bfd_size_type for
159 augmentation_data_len.
160 (display_augmentation_data): New function.
161 (display_debug_frames): Use it.
162 Check for integer overflow when testing augmentation_data_len.
163
164 2017-11-02 Mingi Cho <mgcho.minic@gmail.com>
165
166 PR 22384
167 * readelf.c (print_gnu_property_note): Improve overflow checks so
168 that they will work on a 32-bit host.
169
170 2017-11-01 James Bowman <james.bowman@ftdichip.com>
171
172 * readelf.c (is_16bit_abs_reloc): Add entry for FT32.
173
174 2017-10-31 Nick Clifton <nickc@redhat.com>
175
176 * readelf.c (process_relocs): Tell users if no static relocs were
177 found, but if they had added --use-dynamic to the command line
178 then relocs would have been displayed.
179
180 2017-10-28 Alan Modra <amodra@gmail.com>
181
182 PR 22361
183 * readelf.c (process_archive_index_and_symbols): Ensure ar_size
184 field is zero terminated for strtoul.
185 (setup_archive, get_archive_member_name): Likewise.
186
187 2017-10-27 Simon Marchi <simon.marchi@ericsson.com>
188
189 * dwarf.c (struct Frame_Chunk) <cfa_reg>: Change type to
190 unsigned int.
191 (display_debug_frames): Read CFA reg as an unsigned number.
192
193 2017-10-25 Alan Modra <amodra@gmail.com>
194
195 * nm.c (filter_symbols): Match "__gnu_lto_slim" optionally prefixed
196 with "_".
197
198 2017-10-18 Eric Botcazou <ebotcazou@adacore.com>
199
200 * MAINTAINERS: Add myself as Visium maintainer.
201
202 2017-10-18 Nick Clifton <nickc@redhat.com>
203
204 * README-how-to-make-a-release: A note about checking file and
205 directory permissions.
206
207 * MAINTAINERS: Move Svein Seldal to Past Maintainers section.
208
209 2017-10-18 Alan Modra <amodra@gmail.com>
210
211 PR 22303
212 * readelf.c (print_core_note): Ensure "count" sanity check
213 calculation doesn't overflow.
214 (process_notes_at): Perform note namesz and descsz checks
215 using unsigned comparisons against data remaining. Catch
216 alignment overflow of namesz and descsz too. Don't allocate a
217 temp for terminating "name" when there is space available
218 before descdata.
219
220 2017-10-17 Tom Tromey <tom@tromey.com>
221
222 * MAINTAINERS: Add myself as dwarf-mode.el maintainer.
223
224 2017-10-11 Peeter Joot <peeter.joot@lzlabs.com>
225 Nick Clifton <nickc@redhat.com>
226
227 * dwarf.c (read_and_display_attr_value): Handle DW_AT_endianity,
228 DW_END_default, DW_END_big, DW_END_little, DW_ATE_UCS,
229 DW_ATE_ASCII, DW_CC_pass_by_reference, DW_CC_pass_by_value,
230 DW_CC_GNU_renesas_sh, DW_CC_GNU_borland_fastcall_i386,
231 DW_AT_decimal_sign, DW_AT_defaulted, DW_AT_discr_list.
232 (get_TAG_name): Report user generated tag values.
233 * testsuite/binutils-all/dwarf-attributes.S: New test.
234 * testsuite/binutils-all/dwarf-attributes.W. Expected output from
235 readelf.
236 * testsuite/binutils-all/readelf.exp: Run the new test.
237
238 2017-10-10 Tom Tromey <tom@tromey.com>
239
240 * dwarf-mode.el: Bump to version 1.4.
241
242 2017-10-10 Tom Tromey <tom@tromey.com>
243
244 * dwarf-mode.el (dwarf--process, dwarf--deletion-region): New
245 defvar.
246 (dwarf--check-running, dwarf--sentinel, dwarf--invoke)
247 (dwarf--filter): New functions.
248 (dwarf-do-insert-substructure, dwarf-do-refresh): Call
249 dwarf--check-running, dwarf--invoke.
250 (dwarf-browse): Initialize new variables.
251
252 2017-10-10 Tom Tromey <tom@tromey.com>
253
254 * dwarf-mode.el: Set lexical-binding.
255
256 2017-10-10 Tom Tromey <tom@tromey.com>
257
258 * dwarf-mode.el (dwarf-mode-map): New defvar.
259
260 2017-10-10 Tom Tromey <tromey@sourceware.org>
261
262 PR 22249
263 * dwarf.c (process_debug_info): Skip any comp unit that ends
264 before dwarf_start_die.
265
266 2017-10-06 Alan Modra <amodra@gmail.com>
267
268 * dwarf.c (process_debug_info): Consolidate header length checks.
269 (display_debug_pubnames_worker): Use "start" to read header.
270 Properly check header length and report errors earlier.
271 Simplify loop printing pubnames.
272 (get_line_filename_and_dirname): Catch small negative "length"
273 values.
274 (display_debug_aranges): Likewise. Report header errors
275 earlier using standardized message.
276 (display_debug_names): Likewise.
277
278 2017-10-05 Joseph Myers <joseph@codesourcery.com>
279
280 * readelf.c (decode_arm_unwind): Initialize res to TRUE.
281
282 2017-10-05 Nick Clifton <nickc@redhat.com>
283
284 PR 22260
285 * objcopy.c (strip_main): Add 'M' character to short options list
286 when calling getopt_long.
287
288 2017-10-05 Nick Clifton <nickc@redhat.com>
289
290 PR 22262
291 * readelf.c (dump_relocations): Do not truncate reloc names when
292 displaying output in wide mode.
293
294 2017-10-05 Nick Clifton <nickc@redhat.com>
295
296 * README-how-to-make-a-release: Merge steps 3, 4 and 5, and insert
297 the git tag operation at the correct location.
298
299 2017-10-05 Alan Modra <amodra@gmail.com>
300
301 PR 22239
302 * dwarf.c (read_cie): Don't compare "start" and "end" pointers
303 after adding a possibly wild length to "start", compare the length
304 to the difference of the pointers instead. Remove now redundant
305 "negative" length test.
306
307 2017-10-05 Tristan Gingold <tgingold@free.fr>
308
309 * MAINTAINERS: Update email address. Redirect release maintainer
310 to global maitainers.
311
312 2017-10-01 Alan Modra <amodra@gmail.com>
313
314 PR 22232
315 PR 22230
316 * objdump.c (load_specific_debug_section): Introduce a temp to
317 stop bfd_get_full_section_contents NULLing out section->start.
318
319 2017-10-01 Alan Modra <amodra@gmail.com>
320
321 PR 22230
322 * objdump.c (load_specific_debug_section): Allocate an extra byte
323 for a terminating NUL.
324
325 2017-09-30 Alan Modra <amodra@gmail.com>
326
327 PR 21978
328 * objdump.c: Formatting.
329 (show_line): Reset prev_line when function name changes.
330
331 2017-09-27 Nick Clifton <nickc@redhat.com>
332
333 PR 22219
334 * dwarf.c (process_debug_info): Add a check for a negative
335 cu_length field.
336
337 2017-09-27 Alan Modra <amodra@gmail.com>
338
339 PR 22216
340 * readelf.c (process_symbol_table): Check that DT_HASH symbol
341 chains are only visited once, and report an error if not. Display
342 invalid symbol index if chain is out of range. Use the same logic
343 when calculating histograms rather than the PR 17531 fix. Delete
344 bogus check that chained index is less than number of buckets.
345
346 2017-09-26 Nick Clifton <nickc@redhat.com>
347
348 PR 22154
349 * dwarf.c (get_line_filename_and_dirname): Add extra checks for
350 buffer overruns.
351
352 2017-09-26 Nick Clifton <nickc@redhat.com>
353
354 * README-how-to-make-a-release: New file.
355
356 2017-09-26 Alan Modra <amodra@gmail.com>
357
358 PR 21732
359 * dwarf.c (READ_ULEB): Don't use DWARF_VMA_FMT in translated string.
360 (READ_SLEB): Likewise.
361 * readelf.c (bfd_vmatoa): New function.
362 (get_data, get_dynamic_data): Use it for printing error messages.
363
364 2017-09-25 H.J. Lu <hongjiu.lu@intel.com>
365
366 PR binutils/22203
367 * nm.c (display_rel_file): Free memory returned from
368 bfd_get_synthetic_symtab.
369
370 2017-09-22 Alexandre Oliva <aoliva@redhat.com>
371
372 * dwarf.h (debug_info): Add loc_views and num_loc_views.
373 * dwarf.c (vm1): New constant.
374 (print_dwarf_view): New function.
375 (read_and_display_attr_value): Support DW_AT_GNU_locviews.
376 (process_debug_info): Keep num_loc_offsets and num_loc_views
377 in sync.
378 (display_view_pair_list): New function.
379 (display_loc_list_dwo): Take vstart_ptr; update it. Dump
380 location view pairs before the range they apply to, when a
381 viewlist augments the loc list.
382 (display_loc_list): Likewise. Check view numbers in range
383 tests.
384 (display_loclists_list): Likewise. Handle view pair entries,
385 and warn on trailing ones.
386 (loc_views): New variable.
387 (loc_offsets_compar): Compare loc_views if loc_offsets are the
388 same.
389 (display_debug_loc): Check and sort loc_views too. Accept
390 loc_view as expected_start. Skip if lists and views are the
391 same. Dump locview list separately in order, and pass the
392 locview list base to each list dump function. Warn and skip
393 overlap and hole checking if we find loclists and locviews to
394 not be adjacent.
395 * testsuite/binutils-all/locview-1.s: New.
396 * testsuite/binutils-all/readelf.locview-1: New.
397 * testsuite/binutils-all/locview-2.s: New.
398 * testsuite/binutils-all/readelf.locview-2: New.
399 * testsuite/binutils-all/readelf.exp: Run new tests. Fix
400 option spelling in pr18374 fail message. XFAIL dw5 test on
401 nds32*-elf.
402
403 2017-09-22 Alan Modra <amodra@gmail.com>
404
405 * testsuite/binutils-all/readelf.exp: Don't perror and exit on
406 bintest.s assembly failure. Report tests unresolved instead.
407 Likewise for version note test, pr18374, decompress, and dw5
408 tests.
409 (readelf_test): Set testname to include both option and binary
410 file name. Use for pass/fail.
411
412 2017-09-21 Maciej W. Rozycki <macro@imgtec.com>
413
414 * readelf.c (get_machine_flags) <E_MIPS_MACH_5900>: New case.
415
416 2017-09-05 Nick Clifton <nickc@redhat.com>
417
418 PR 21995
419 * readelf.c (process_mips_specific): Add checks for a NULL data
420 pointer.
421
422 2017-09-05 Alexander Fedotov <alexander.fedotov@nxp.com>
423 Edmar Wienskoski <edmar.wienskoski@nxp.com
424
425 * readelf.c (get_elf_section_flags): Add VLE.
426 (process_section_headers): Add VLE key to details.
427
428 2017-08-25 Alan Modra <amodra@gmail.com>
429
430 PR 21994
431 * readelf.c (process_version_sections <SHT_GNU_verdef>): Check
432 vd_aux and vda_next for sanity. Delete "end". Correct overflow
433 checks.
434 (process_version_sections <SHT_GNU_verneed>): Correct overflow
435 check. Don't report invalid vna_next on overflow. Do report
436 invalid vna_next on size less than aux info.
437
438 2017-08-23 Alan Modra <amodra@gmail.com>
439
440 PR 21990
441 * readelf.c (process_version_sections <SHT_GNU_verneed>): Check
442 for invalid vn_next field before adding to idx. Use unsigned
443 long for index vars. Move index checks.
444 <SHT_GNU_verdef>: Likewise for vd_next.
445
446 2017-08-17 Nick Clifton <nickc@redhat.com>
447
448 * testsuite/binutils-all/note-3-64.s: New test. Checks assembly
449 and decoding of version2 GNU build attribute notes.
450 * testsuite/binutils-all/note-3-32.s: New test. 32-bit version of
451 the above test.
452 * testsuite/binutils-all/note-3-64.d: New test driver.
453 * testsuite/binutils-all/note-3-32.d: New test driver.
454 * testsuite/binutils-all/objcopy.exp: Run the new test.
455 * readelf.c (is_64bit_abs_reloc): Add R_SPARC_64.
456
457 2017-08-14 Gustavo Romero <gromero@linux.vnet.ibm.com>
458
459 * readelf.c (get_note_type): Handle PPC note types available
460 since Linux 4.8.
461
462 2017-08-12 Alan Modra <amodra@gmail.com>
463
464 * readelf.c (process_note): Qualify NT_GNU_BUILD_ATTRIBUTE notes
465 by name data.
466
467 2017-08-08 Nick Clifton <nickc@redhat.com>
468
469 PR 21909
470 * prdbg.c (pr_int_type): Increase size of local string buffer.
471 (pr_float_type): Likewise.
472 (pr_bool_type): Likewise.
473
474 2017-08-02 Nick Clifton <nickc@redhat.com>
475
476 PR 21702
477 * arsup.c (ar_addmod): Add plugin support for the MRI ADDMOD
478 command.
479
480 2017-08-02 Nick Clifton <nickc@redhat.com>
481
482 * testsuite/binutils-all/objdump.exp (cpus_expected): Add am33-2.
483
484 2017-08-02 Alan Modra <amodra@gmail.com>
485
486 * readelf.c (is_32bit_abs_reloc): Add R_IA64_SECREL32MSB and
487 R_IA64_DIR32MSB.
488 (is_64bit_abs_reloc): Add R_IA64_DIR64MSB.
489 (is_64bit_pcrel_reloc): Add R_IA64_PCREL64MSB.
490
491 2017-08-01 Nick Clifton <nickc@redhat.com>
492
493 * po/sv.po: Updated Swedish translation.
494
495 2017-07-31 Marty Plummer <ntzrmtthihu777@gmail.com>
496
497 PR 21861
498 * winduni.c (codepages): Use cp1252 for codepage 0.
499
500 2017-07-25 Nick Clifton <nickc@redhat.com>
501
502 PR 21820
503 * readelf.c (dump_section_as_strings): Do not fail if the section
504 was empty.
505 (dump_section_as_bytes): Likewise.
506
507 2017-07-24 Nick Clifton <nickc@redhat.com>
508
509 PR 21813
510 * rddbg.c (read_symbol_stabs_debugging_info): Check for an empty
511 string whilst concatenating symbol names.
512
513 2017-07-21 Nick Clifton <nickc@redhat.com>
514
515 * po/fr.po: Updated French translation.
516
517 2017-07-21 Simon Marchi <simon.marchi@ericsson.com>
518
519 * dwarf.c (last_pointer_size, warned_about_missing_comp_units):
520 Remove.
521 (load_debug_info): Remove assignments to those two variables.
522
523 2017-07-21 Alexandre Oliva <aoliva@redhat.com>
524
525 * dwarf.c (struct State_Machine_Registers): Add view field.
526 (reset_state_machine): Reset view.
527 (process_extended_line_op): Reset view when appropriate.
528 (display_debug_lines_raw): Increment or reset view when appropriate.
529 Print nonzero views. Support print view resets, disabled by default.
530 (display_debug_lines_decoded): Likewise. Disambiguate op_code tests,
531 enabling printing of end_sequence.
532 * testsuite/binutils-all/dw2-1.W: Add nonzero views.
533 * testsuite/binutils-all/dw2-3.W: Likewise.
534 * testsuite/binutils-all/dw2-3gabi.W: Likewise.
535 * testsuite/binutils-all/dw5.W: Add end sequence lines.
536 * testsuite/binutils-all/i386/compressed-1a.d: Add nonzero views.
537 * testsuite/binutils-all/libdw2-compressedgabi.out: Likewise.
538 * testsuite/binutils-all/objdump.W: Likewise.
539 * testsuite/binutils-all/objdump.WL: Add end sequence lines.
540 * testsuite/binutils-all/x86-64/compressed-1a.d: Add nonzero views.
541
542 2017-07-19 Tristan Gingold <gingold@adacore.com>
543
544 * nm.c (show_stats): Remove variable.
545 (long_options): Remove --stats option.
546 (main): Remove handling of --stats.
547
548 2017-07-18 Nick Clifton <nickc@redhat.com>
549
550 PR 21775
551 * coffgrok.c: Fix spelling typos.
552 * readelf.c: Likewise.
553 * stabs.c: Likewise.
554 * testsuite/binutils-all/objcopy.exp: Likewise.
555
556 2017-07-18 Nick Clifton <nickc@redhat.com>
557
558 * po/sv.po: Updated Swedish translation.
559
560 2017-07-18 Hans-Peter Nilsson <hp@bitrange.com>
561
562 * dwarf.c (display_debug_names): Initialize hash_prev.
563
564 2017-07-17 Nick Clifton <nickc@redhat.com>
565
566 PR 21433
567 * ar.c (main): Skip check for no files on the command line when
568 running in MRI mode.
569
570 2017-07-13 H.J. Lu <hongjiu.lu@intel.com>
571
572 * testsuite/binutils-all/objdump.exp: Always delete $testarchive
573 first.
574
575 2017-07-12 Alan Modra <amodra@gmail.com>
576
577 * po/bg.po: Update from translationproject.org/latest/binutils/.
578 * po/ca.po: Likewise.
579 * po/da.po: Likewise.
580 * po/es.po: Likewise.
581 * po/fi.po: Likewise.
582 * po/fr.po: Likewise.
583 * po/hr.po: Likewise.
584 * po/id.po: Likewise.
585 * po/it.po: Likewise.
586 * po/ja.po: Likewise.
587 * po/ro.po: Likewise.
588 * po/ru.po: Likewise.
589 * po/sk.po: Likewise.
590 * po/sr.po: Likewise.
591 * po/sv.po: Likewise.
592 * po/tr.po: Likewise.
593 * po/uk.po: Likewise.
594 * po/vi.po: Likewise.
595 * po/zh_CN.po: Likewise.
596 * po/zh_TW.po: Likewise.
597
598 2017-07-12 Nick Clifton <nickc@redhat.com>
599
600 Fix compile time warnings using gcc 7.1.1.
601 * dwarf.c (dwarf_vmatoa_1): Do not pass a NULL string pointer to
602 sprintf.
603 * srconv.c (walk_tree_type): Initialise the spare field of the
604 IT_dty structure.
605
606 2017-07-11 Andreas Schwab <schwab@suse.de>
607
608 * readelf.c (process_note): Print newline after description data
609 in narrow mode.
610 (print_core_note): Print newline if nothing was printed in wide
611 mode.
612
613 2017-07-09 Rafael Fontenelle <rafaelff@gnome.org>
614
615 * dwarf.c (display_formatted_table): Fix error message typo.
616
617 2017-07-07 John Baldwin <jhb@FreeBSD.org>
618
619 * readelf.c (get_freebsd_elfcore_note_type): Handle
620 NT_FREEBSD_PTLWPINFO.
621
622 2017-07-05 H.J. Lu <hongjiu.lu@intel.com>
623
624 * dwarf.c (display_debug_names): Replace index with xindex.
625
626 2017-07-04 Tristan Gingold <gingold@adacore.com>
627
628 * configure: Regenerate.
629
630 2017-07-04 Tristan Gingold <gingold@adacore.com>
631
632 * NEWS: Add marker for 2.29.
633
634 2017-07-03 Tristan Gingold <gingold@adacore.com>
635
636 * po/binutils.pot: Regenerate.
637
638 2017-07-03 Alan Modra <amodra@gmail.com>
639
640 * strings.c (filename_and_size_t): Delete.
641 (strings_a_section): Don't check section size against file size.
642 Use bdf_malloc_and_get_section. Report an error on failures.
643 Replace arg param with filename and got_a_section param.
644 (got_a_section): Move to..
645 (strings_object_file): ..an auto var here. Iterate over sections
646 rather than calling bfd_map_over_sections. Adjust strings_a_section
647 call.
648
649 2017-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
650
651 * dwarf.c: Include assert.h.
652 (MAX, MIN, get_IDX_name, display_debug_names): New.
653 (debug_displays): Add .debug_names.
654 * dwarf.h: (enum dwarf_section_display_enum): Add debug_names.
655 * readelf.c (process_section_headers): Add ".debug_names".
656
657 2017-07-01 Alan Modra <amodra@gmail.com>
658
659 PR binutils/21665
660 * objdump.c (strtab): Make var a bfd_byte*.
661 (disassemble_section): Don't limit malloc size. Instead, use
662 bfd_malloc_and_get_section.
663 (read_section_stabs): Use bfd_malloc_and_get_section. Return
664 bfd_byte*.
665 (find_stabs_section): Remove now unnecessary cast.
666 * objcopy.c (copy_object): Use bfd_malloc_and_get_section. Free
667 contents on error return.
668 * nlmconv.c (copy_sections): Use bfd_malloc_and_get_section.
669
670 2017-06-30 Nick Clifton <nickc@redhat.com>
671
672 PR binutils/21665
673 * objdump.c (disassemble_section): Move check for an overlarge
674 section to just before the allocation of memory. Do not check
675 section size against file size, but instead use an arbitrary 2Gb
676 limit. Issue a warning message if the section is too big.
677
678 2017-06-30 Maciej W. Rozycki <macro@imgtec.com>
679
680 * NEWS: Mention microMIPS XPA support.
681
682 2017-06-30 Maciej W. Rozycki <macro@imgtec.com>
683
684 * NEWS: Mention microMIPS Release 5 ISA support.
685
686 2017-06-30 Maciej W. Rozycki <macro@imgtec.com>
687
688 * testsuite/binutils-all/mips/mips-xpa-virt-1.d: New test.
689 * testsuite/binutils-all/mips/mips-xpa-virt-2.d: New test.
690 * testsuite/binutils-all/mips/mips-xpa-virt-3.d: New test.
691 * testsuite/binutils-all/mips/mips-xpa-virt-4.d: New test.
692 * testsuite/binutils-all/mips/mips-xpa-virt.s: New test source.
693 * testsuite/binutils-all/mips/mips.exp: Run the new tests.
694
695 2017-06-29 Anton Kolesov <Anton.Kolesov@synopsys.com>
696
697 * testsuite/binutils-all/arc/double_store.s: New file.
698 * testsuite/binutils-all/arc/objdump.exp: Tests for disassembler
699 options.
700 (do_objfile): New function.
701 (check_assembly): Likewise.
702
703 2017-06-29 Andreas Arnez <arnez@linux.vnet.ibm.com>
704
705 * readelf.c (get_note_type): Add NT_S390_GS_CB and NT_S390_GS_BC.
706
707 2017-06-28 H.J. Lu <hongjiu.lu@intel.com>
708
709 * objdump.c (dump_relocs_in_section): Cast to ufile_ptr when
710 comparing against bfd_get_file_size return.
711
712 2017-06-28 Nick Clifton <nickc@redhat.com>
713
714 * objcopy.c (merge_gnu_build_notes): Add support for version 2 notes.
715 * readelf.c (print_gnu_build_attribute_name): Likewise.
716
717 2017-06-28 Maciej W. Rozycki <macro@imgtec.com>
718 Matthew Fortune <matthew.fortune@imgtec.com>
719
720 * readelf.c (get_machine_flags) <E_MIPS_MACH_IAMR2>: New case.
721 (print_mips_isa_ext) <AFL_EXT_INTERAPTIV_MR2>: Likewise.
722 * NEWS: Mention Imagination interAptiv MR2 processor support.
723
724 2017-06-26 Nick Clifton <nickc@redhat.com>
725
726 PR binutils/21665
727 * objdump.c (disassemble_section): Skip any section that is bigger
728 than the entire file.
729
730 2017-06-26 Nick Clifton <nickc@redhat.com>
731
732 PR binutils/21659
733 * bucomm.c (get_file_size): Explicitly warn if the file is a
734 directory.
735
736 2017-06-24 Thomas Preud'homme <thomas.preudhomme@arm.com>
737
738 * readelf.c (arm_attr_tag_CPU_arch): Fill value for ARMv8-R.
739
740 2017-06-23 Nick Clifton <nickc@redhat.com>
741
742 PR binutils/21659
743 * strings.c (strings_file): Warn about attempts to run strings on
744 a directory.
745
746 2017-06-22 H.J. Lu <hongjiu.lu@intel.com>
747
748 * readelf.c (decode_x86_feature): Decode
749 GNU_PROPERTY_X86_FEATURE_1_SHSTK.
750 * testsuite/binutils-all/i386/shstk.d: New file.
751 * testsuite/binutils-all/i386/shstk.s: Likewise.
752 * testsuite/binutils-all/x86-64/shstk-x32.d: Likewise.
753 * testsuite/binutils-all/x86-64/shstk.d: Likewise.
754 * testsuite/binutils-all/x86-64/shstk.s: Likewise.
755
756 2017-06-22 H.J. Lu <hongjiu.lu@intel.com>
757
758 * readelf.c (decode_x86_feature): New.
759 (print_gnu_property_note): Call decode_x86_feature on
760 GNU_PROPERTY_X86_FEATURE_1_AND.
761 * testsuite/binutils-all/i386/empty.d: New file.
762 * testsuite/binutils-all/i386/empty.s: Likewise.
763 * testsuite/binutils-all/i386/ibt.d: Likewise.
764 * testsuite/binutils-all/i386/ibt.s: Likewise.
765 * testsuite/binutils-all/x86-64/empty-x32.d: Likewise.
766 * testsuite/binutils-all/x86-64/empty.d: Likewise.
767 * testsuite/binutils-all/x86-64/empty.s: Likewise.
768 * testsuite/binutils-all/x86-64/ibt-x32.d: Likewise.
769 * testsuite/binutils-all/x86-64/ibt.d: Likewise.
770 * testsuite/binutils-all/x86-64/ibt.s: Likewise.
771
772 2017-06-21 H.J. Lu <hongjiu.lu@intel.com>
773
774 * dwarf.c (READ_ULEB): Use DWARF_VMA_FMT to report error.
775 (READ_SLEB): Likewise.
776
777 2017-06-21 Nick Clifton <nickc@redhat.com>
778
779 PR binutils/21648
780 * dwarf.c (LEB): Rename to SKIP_ULEB and READ_ULEB. Add check for
781 reading a value that is too big for the containing variable.
782 (SLEB): Rename to SKIP_SLEB and READ_SLEB. Add similar check.
783 Replace uses of LEB and SLEB with appropriate new macro.
784 (display_debug_frames): Use an unsigned int for the 'reg'
785 variable. Use a signed long for the 'l' variable.
786
787 2017-06-20 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
788
789 * readelf.c (get_s390_segment_type): Add support for the new
790 segment type PT_S390_PGSTE.
791 (get_segment_type): Call get_s390_segment_type.
792
793 2017-06-19 Nick Clifton <nickc@redhat.com>
794
795 PR binutils/21619
796 * objdump.c (disassemble_bytes): Check that there is sufficient
797 data available before attempting to display it.
798
799 2017-06-06 Simon Marchi <simon.marchi@ericsson.com>
800
801 * sysinfo.y: Free memory allocated by token NAME.
802
803 2017-05-30 Anton Kolesov <anton.kolesov@synopsys.com>
804
805 * doc/binutils.texi: Document new cpu=... disassembler options for ARC.
806
807 2017-05-30 H.J. Lu <hongjiu.lu@intel.com>
808
809 PR binutils/21519
810 * objdump.c (dump_relocs_in_section): Replace get_file_size
811 with bfd_get_file_size to get archive element size.
812 * testsuite/binutils-all/objdump.exp (test_objdump_f): New
813 proc.
814 (test_objdump_h): Likewise.
815 (test_objdump_t): Likewise.
816 (test_objdump_r): Likewise.
817 (test_objdump_s): Likewise.
818 Add objdump tests on archive.
819
820 2017-05-24 Yao Qi <yao.qi@linaro.org>
821
822 * objdump.c (disassemble_data): Caller update.
823
824 2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
825
826 * objcopy.c (merge_gnu_build_notes): Remove workaround that
827 prevented deleting relocations in duplicated notes in mips64 and
828 sparc.
829
830 2017-05-19 Maciej W. Rozycki <macro@imgtec.com>
831
832 * testsuite/binutils-all/mips/mips-note-2.d: New test.
833 * testsuite/binutils-all/mips/mips-note-2r.d: New test.
834 * testsuite/binutils-all/mips/mips-note-2-n32.d: New test.
835 * testsuite/binutils-all/mips/mips-note-2-n64.d: New test.
836 * testsuite/binutils-all/mips/mips-note-2r-n32.d: New test.
837 * testsuite/binutils-all/mips/mips-note-2r-n64.d: New test.
838 * testsuite/binutils-all/mips/mips.exp: Define `has_newabi'.
839 Run the new tests.
840
841 2017-05-19 Maciej W. Rozycki <macro@imgtec.com>
842
843 * testsuite/lib/utils-lib.exp (run_dump_test): Handle the `dump'
844 option.
845
846 2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
847
848 * NEWS: Mention the SPARC M8 support.
849
850 2017-05-19 Maciej W. Rozycki <macro@imgtec.com>
851
852 * testsuite/binutils-all/mips/mips.exp: Bail out right away if
853 non-ELF.
854
855 2017-05-18 Alan Modra <amodra@gmail.com>
856
857 * strings.c: Don't compare boolean values against TRUE or FALSE.
858
859 2017-05-15 Jeff Law <law@redhat.com>
860
861 * readelf.c (display_arc_attribute): Avoid implicit fallthru.
862
863 2017-05-15 Maciej W. Rozycki <macro@imgtec.com>
864
865 * testsuite/binutils-all/mips/mips16-undecoded.d: Add `-mips3'
866 to `as' flags.
867 * testsuite/binutils-all/mips/mips16e2-undecoded.d: New test.
868 * testsuite/binutils-all/mips/mips16e2-extend-insn.d: New test.
869 * testsuite/binutils-all/mips/mips16-undecoded.s: Remove
870 `.module mips3'.
871 * testsuite/binutils-all/mips/mips.exp: Run the new tests.
872
873 2017-05-15 Maciej W. Rozycki <macro@imgtec.com>
874
875 * readelf.c (print_mips_ases): Handle MIPS16e2 ASE.
876 * NEWS: Mention MIPS16e2 ASE support.
877
878 2017-05-12 Maciej W. Rozycki <macro@imgtec.com>
879
880 * testsuite/binutils-all/mips/mips16-extend-insn.d: Adjust BREAK
881 and SDBBP disassembly.
882
883 2017-05-10 Maciej W. Rozycki <macro@imgtec.com>
884
885 * testsuite/binutils-all/mips/mips.exp: Define `tempfile' and
886 `copyfile' variables.
887
888 2017-05-10 Claudiu Zissulescu <claziss@synopsys.com>
889
890 * readelf.c (decode_ARC_machine_flags): Recognize OSABI v4.
891 (get_arc_section_type_name): New function.
892 (get_section_type_name): Use the above function.
893 (display_arc_attribute): New function.
894 (process_arc_specific): Likewise.
895 (process_arch_specific): Handle ARC specific information.
896
897 2017-05-09 Kaz Kojima <kkojima@rr.iij4u.or.jp>
898
899 * MAINTAINERS (SH): Remove myself as SH maintainer.
900
901 2017-05-02 H.J. Lu <hongjiu.lu@intel.com>
902
903 * objcopy.c (merge_gnu_build_notes): Cast relcount to unsigned
904 long when comparing with sec->reloc_count.
905
906 2017-05-02 Nick Clifton <nickc@redhat.com>
907
908 * objcopy.c (merge_gnu_build_notes): Disable merge if there are
909 more internal relocs than external relocs.
910
911 2017-05-02 Maciej W. Rozycki <macro@imgtec.com>
912
913 * testsuite/binutils-all/mips/mips16-undecoded.d: Adjust the
914 disassembly of PC-relative LA and LW synthetic instructions.
915
916 2017-05-02 Nick Clifton <nickc@redhat.com>
917
918 PR 21440
919 * objdump.c (dump_relocs_in_section): Check for an excessive
920 number of relocs before attempting to dump them.
921
922 2017-05-01 Alan Modra <amodra@gmail.com>
923
924 * objcopy.c (merge_gnu_build_notes): Correct code deleting
925 relocs.
926
927 2017-04-28 Nick Clifton <nickc@redhat.com>
928
929 PR binutils/21439
930 * readelf.c (print_gnu_build_attribute_name): Allow for an empty
931 name field.
932
933 2017-04-28 Nick Clifton <nickc@redhat.com>
934
935 PR binutils/21437
936 * readelf.c (process_version_sections): Check for underflow when
937 computing the start address of the auxillary version data.
938
939 2017-04-28 Nick Clifton <nickc@redhat.com>
940
941 PR binutils/21438
942 * dwarf.c (process_extended_line_op): Do not assume that the
943 string extracted from the section is NUL terminated.
944 (fetch_indirect_string): If the string retrieved from the section
945 is not NUL terminated, return an error message.
946 (fetch_indirect_line_string): Likewise.
947 (fetch_indexed_string): Likewise.
948
949 2017-04-26 Nick Clifton <nickc@redhat.com>
950
951 PR binutils/21433
952 * bucomm.c (get_file_size): Return -1 if file_name is NULL.
953 * ar.c (main): Fail with usage() invocation if no file names are
954 provided.
955
956 2017-04-26 Nick Clifton <nickc@redhat.com>
957
958 * readelf.c (process_section_headers): Warn about overlarge
959 sections.
960 (print_gnu_build_attribute_name): Print the number of unrecognised
961 note types. Fix formatting in the presence of errors.
962 (testsuite/binutils-all/note-2-32.s): Fix encoding of numeric notes.
963 (testsuite/binutils-all/note-2-64.s): Likewise.
964
965 2017-04-26 Maciej W. Rozycki <macro@imgtec.com>
966
967 * readelf.c (process_mips_specific): Add static GOT support.
968
969 2017-04-25 Maciej W. Rozycki <macro@imgtec.com>
970
971 * readelf.c (process_mips_specific): Remove error reporting from
972 GOT[1] processing.
973
974 2017-04-25 Maciej W. Rozycki <macro@imgtec.com>
975
976 * readelf.c (process_mips_specific): Remove null GOT data check.
977
978 2017-04-25 Maciej W. Rozycki <macro@imgtec.com>
979
980 * testsuite/binutils-all/mips/mips16-alias.d: New test.
981 * testsuite/binutils-all/mips/mips16-noalias.d: New test.
982 * testsuite/binutils-all/mips/mips16-alias.s: New test source.
983 * testsuite/binutils-all/mips/mips.exp: Run the new tests.
984
985 2017-04-23 Alan Modra <amodra@gmail.com>
986
987 PR 21418
988 * ar.c (main): Check -a, -b, -i and -N args are given.
989
990 2017-04-23 Alan Modra <amodra@gmail.com>
991
992 PR 21417
993 * ar.c (main): Check that an archive file is given after options.
994
995 2017-04-23 Alan Modra <amodra@gmail.com>
996
997 PR 21415
998 * objdump.c (disassemble_section): Check bfd_get_section_contents
999 status.
1000
1001 2017-04-23 Alan Modra <amodra@gmail.com>
1002
1003 PR 21408
1004 * dwarf.c (display_debug_lines_decoded): Don't segfault on NULL
1005 file_table.
1006
1007 2017-04-21 Nick Clifton <nickc@redhat.com>
1008
1009 PR binutils/21378
1010 * readelf.c (print_gnu_build_attribute_name): Check for an
1011 overlarge name field.
1012
1013 2017-04-13 Nick Clifton <nickc@redhat.com>
1014
1015 PR binutils/21379
1016 * readelf.c (process_dynamic_section): Detect over large section
1017 offsets in the DT_SYMTAB entry.
1018
1019 2017-04-13 Nick Clifton <nickc@redhat.com>
1020
1021 PR binutils/21345
1022 * readelf.c (process_mips_specific): Catch an unfeasible memory
1023 allocation before it happens and print a suitable error message.
1024
1025 2017-04-13 Nick Clifton <nickc@redhat.com>
1026
1027 * objcopy.c: Add --no-merge-notes option to disable note merging.
1028 Add --[no-]merge-notes option to strip, and enable it by default.
1029 (num_bytes): New function.
1030 (merge_gnu_build_notes): Add code to merge stack size notes.
1031 * binutils.texi: Update strip and objcopy documentation.
1032 * readelf.c (print_gnu_build_attribute_name): Use defined
1033 constants for note types.
1034
1035 2017-04-10 John Delsignor <john.delsignore@roguewave.com>
1036
1037 PR binutils/21319
1038 * dwarf.c (display_gdb_index): Correct test for a corrupt address
1039 table size.
1040
1041 2017-04-05 Jiong Wang <jiong.wang@arm.com>
1042
1043 * objcopy.c (struct redefine_node): Delete the field "next".
1044 (redefine_sym_list): Deleted.
1045 (redefine_specific_htab): New hash table.
1046 (redefine_specific_reverse_htab): Likewise.
1047 (eq_string_redefnode): New function.
1048 (htab_hash_redefnode): Likewise.
1049 (create_symbol2redef_htab): Likewise.
1050 (add_specific_symbol_node): Likewise.
1051 (create_symbol_htabs): Create redefine_specific_htab and
1052 redefine_specific_reverse_htab.
1053 (lookup_sym_redefinition): Use hash table instead of list.
1054 (redefine_list_append): Likewise, and rename to add_redefine_and_check.
1055 (copy_main): Use redefine_specific_htab instead of redefine_sym_list.
1056 Update comments.
1057
1058 2017-04-04 H.J. Lu <hongjiu.lu@intel.com>
1059
1060 * NEWS: Mention support for ELF SHF_GNU_MBIND and
1061 PT_GNU_MBIND_XXX.
1062 * readelf.c (get_segment_type): Handle PT_GNU_MBIND_XXX.
1063 (get_elf_section_flags): Handle SHF_GNU_MBIND.
1064 (process_section_headers): Likewise.
1065 * testsuite/binutils-all/mbind1.s: New file.
1066 * testsuite/binutils-all/objcopy.exp: Run readelf test on
1067 mbind1.s.
1068
1069 2017-04-03 Nick Clifton <nickc@redhat.com>
1070
1071 PR binutils/21345
1072 * readelf.c (get_program_headers): Check for there being too many
1073 program headers before attempting to allocate space for them.
1074
1075 2017-04-03 Nick Clifton <nickc@redhat.com>
1076
1077 PR binutils/21344
1078 * readelf.c (process_mips_specific): Check for an out of range GOT
1079 entry before reading the module pointer.
1080
1081 2017-04-03 Nick Clifton <nickc@redhat.com>
1082
1083 PR binutils/21343
1084 * readelf.c (get_unwind_section_word): Fix snafu checking for
1085 invalid word offsets in ARM unwind information.
1086
1087 2017-03-31 Pip Cet <pipcet@gmail.com>
1088
1089 * NEWS: Use "WebAssembly" consistently.
1090 * testsuite/binutils-all/wasm32/wasm32.exp: Fix copyright notice.
1091
1092 2017-03-30 Pip Cet <pipcet@gmail.com>
1093
1094 * readelf.c: Add support for wasm32 ELF format WebAssembly files.
1095 (guess_is_rela): Likewise.
1096 (dump_relocations): Likewise.
1097 (is_32bit_abs_reloc): Likewise.
1098 (is_none_reloc_): Likewise.
1099 * NEWS: Mention the new support.
1100 * testsuite/lib/binutils-common.exp (is_elf_format): Mark wasm32
1101 as ELF target.
1102 (supports_gnu_unique): Mark wasm32 as supporting STB_GNU_UNIQUE.
1103 * testsuite/binutils-all/nm.exp: Mark wasm32 as requiring .size annotations.
1104 * testsuite/binutils-all/wasm32: New directory.
1105 * testsuite/binutils-all/wasm32/create-wasm.d: New file.
1106 * testsuite/binutils-all/wasm32/create-wasm.s: Likewise.
1107 * testsuite/binutils-all/wasm32/custom-section.d: Likewise.
1108 * testsuite/binutils-all/wasm32/custom-section.s: Likewise.
1109 * testsuite/binutils-all/wasm32/invalid-wasm-1.d: Likewise.
1110 * testsuite/binutils-all/wasm32/invalid-wasm-1.s: Likewise.
1111 * testsuite/binutils-all/wasm32/long-sections.d: Likewise.
1112 * testsuite/binutils-all/wasm32/long-sections.s: Likewise.
1113 * testsuite/binutils-all/wasm32/parse-wasm.d: Likewise.
1114 * testsuite/binutils-all/wasm32/parse-wasm.s: Likewise.
1115 * testsuite/binutils-all/wasm32/parse-wasm-2.d: Likewise.
1116 * testsuite/binutils-all/wasm32/parse-wasm-2.s: Likewise.
1117 * testsuite/binutils-all/wasm32/prepared-section.d: Likewise.
1118 * testsuite/binutils-all/wasm32/prepared-section.s: Likewise.
1119 * testsuite/binutils-all/wasm32/wasm32.exp: New file, run tests.
1120
1121 2017-03-29 Alan Modra <amodra@gmail.com>
1122
1123 * doc/binutils.texi (objdump): Document PowerPC -M options.
1124
1125 2017-03-21 Andi Kleen <ak@linux.intel.com>
1126
1127 * objdump.c (unwind_inlines): Add.
1128 (option_values): Add OPTION_INLINES.
1129 (show_line): Unwind inlines if requested.
1130 (main): Parse OPTION_INLINES.
1131 (usage): Document --inlines.
1132 * doc/binutils.texi: Document --inlines.
1133 * NEWS: Likewise.
1134
1135 2017-03-21 Nick Clifton <nickc@redhat.com>
1136
1137 * readelf.c (print_gnu_build_attribute_name): Allow stack
1138 protection notes to contain numeric values. Use a colon rather
1139 than a space to separate a string name from its values. Decode
1140 the numeric value of a stack protection note.
1141 * objcopy.c (merge_gnu_build_notes): Allow version notes to
1142 contain extra text after the protocol version number.
1143
1144 2017-03-20 Mark Wielaard <mark@klomp.org>
1145
1146 * readelf.c (process_program_headers): Move dynamic_addr check
1147 after .dynamic section cross check.
1148
1149 2017-03-17 Nick Clifton <nickc@redhat.com>
1150
1151 * readelf.c (print_gnu_build_attribute_name): Fix off by one error
1152 printing the value for a build note with an ascii name.
1153
1154 2017-03-16 Nick Clifton <nickc@redhat.com>
1155
1156 * readelf.c (print_gnu_build_attribute_name): Add support for
1157 GNU_BUILD_ATTRIBUTE_SHORT_ENUM.
1158
1159 2017-03-14 Nick Clifton <nickc@redhat.com>
1160
1161 * readelf.c (print_gnu_build_attribute_description): Move symbol
1162 printing code to...
1163 (print_symbol_for_build_attribute): New function. ...here.
1164 Add to find the best symbol to associate with an OPEN note.
1165 Add code to cache the symbol table and string table, so that they
1166 are not loaded every time a note is displayed.
1167 * testsuite/binutils-all/note-2-32.s: Add a function symbol.
1168 * testsuite/binutils-all/note-2-64.s: Likewise.
1169 * testsuite/binutils-all/note-2-32.d: Update expected note output.
1170 * testsuite/binutils-all/note-2-64.d: Likewise.
1171
1172 2017-03-13 Alan Modra <amodra@gmail.com>
1173 Taeung Song <treeze.taeung@gmail.com>
1174
1175 * objdump.c (update_source_path): Add abfd param. Add struct
1176 stat var. Pass to try_print_file_open. Warn if source is more
1177 recent than object.
1178 (try_print_file_open, slurp_file): Add struct stat param to
1179 return fstat.
1180 (show_line): Call update_source_path with bfd.
1181
1182 2017-03-10 Chia-Hao Lo <fcamel@gmail.com>
1183
1184 PR binutils/21235
1185 * objdump.c (main): Set do_wide with --wide.
1186
1187 2017-03-10 Nick Clifton <nickc@redhat.com>
1188
1189 * readelf.c (get_machine_name): Rearrange switch table in order of
1190 increasing machine number. Add missing entries.
1191
1192 2017-03-08 H.J. Lu <hongjiu.lu@intel.com>
1193
1194 PR binutils/21231
1195 * readelf.c (decode_x86_isa): Change argument to unsigned int.
1196 (print_gnu_property_note): Retrieve property type and datasz as
1197 4-byte integer. Consolidate property datasz check. Check
1198 GNU_PROPERTY_LOPROC and GNU_PROPERTY_LOUSER.
1199 * testsuite/binutils-all/i386/pr21231a.d: New file.
1200 * testsuite/binutils-all/i386/pr21231a.s: Likewise.
1201 * testsuite/binutils-all/i386/pr21231b.d: Likewise.
1202 * testsuite/binutils-all/i386/pr21231b.s: Likewise.
1203 * testsuite/binutils-all/x86-64/pr21231a.d: Likewise.
1204 * testsuite/binutils-all/x86-64/pr21231a.s: Likewise.
1205 * testsuite/binutils-all/x86-64/pr21231b.d: Likewise.
1206 * testsuite/binutils-all/x86-64/pr21231b.s: Likewise.
1207
1208 2017-03-06 Nick Clifton <nickc@redhat.com>
1209
1210 * readelf.c (print_gnu_build_attribute_name): Read byte values
1211 from the name string as unsigned bytes.
1212 (process_notes_at): Use memcpy to copy an unterminated name
1213 string.
1214
1215 2017-03-06 Sam Thursfield <sam.thursfield@codethink.co.uk>
1216
1217 * configure.ac (AC_CHECK_DECLS): Add asprintf.
1218 * config.in: Regenerate.
1219 * configure: Regenerate.
1220
1221 2017-03-02 Nick Clifton <nickc@redhat.com>
1222
1223 * readelf.c (print_gnu_build_attribute_description): Use global
1224 symbols for OPEN attributes if at all possible.
1225 * objcopy.c (is_merged_note_section): Support build note sections
1226 without the SHF_GNU_BUILD_NOTE section flag set.
1227
1228 2017-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1229
1230 * dwarf.c (debug_displays_assert): New static assertion.
1231
1232 2017-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1233
1234 * dwarf.h (enum dwarf_section_display_enum): Add loclists and rnglists.
1235
1236 2017-03-01 Nick Clifton <nickc@redhat.com>
1237
1238 * readelf.c (get_note_type): Add support for GNU_BUILD_NOTEs.
1239 (get_gnu_elf_note_type): Add support for GNU_PROPERTY_NOTEs.
1240 (decode_x86_isa): New function.
1241 (print_gnu_property_note): New function.
1242 (print_gnu_note): Handle GNU_PROPERTY_NOTEs.
1243 (print_gnu_build_attribute_description): New function.
1244 (print_gnu_build_attribute_name): New function.
1245 (process_note): Add support for GNU_BUILD_NOTEs.
1246 * objcopy.c (--merge-notes): New command line option.
1247 (copy_options): Add merge-notes.
1248 (copy_usage): Likewise.
1249 (is_merge_note_section): New function.
1250 (merge_gnu_build_notes): New function.
1251 (copy_object): Merge note sections if asked to do so.
1252 (skip_section): Add skip_copy parameter. Add support for skipping
1253 merged note sections.
1254 (copy_relocations_in_section): Update call to skip_section.
1255 (copy_section): Likewise.
1256 (copy_main): Add support for merge-notes option.
1257 * doc/binutils.texi: Document the new option to objcopy.
1258 * NEWS: Mention the new feature.
1259 * testsuite/binutils-all/note-2-32.d: New test. Checks note
1260 merging on 32-bit targets.
1261 * testsuite/binutils-all/note-2-32.s: New test source file.
1262 * testsuite/binutils-all/note-2-64.d: New test. Like note-2-32.d
1263 but for 64-bit targets.
1264 * testsuite/binutils-all/note-2-64.s: New test source file.
1265 * testsuite/binutils-all/objcopy.exp: Run the new test.
1266
1267 2017-02-28 Peter Bergner <bergner@vnet.ibm.com>
1268
1269 * objdump.c (main): Use remove_whitespace_and_extra_commas.
1270
1271 2017-02-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1272
1273 Fix compilation with GCC 4.4.7.
1274 * dwarf.c (display_loclists_list, display_debug_rnglists_list):
1275 Initialize begin and end.
1276
1277 2017-02-25 Alan Modra <amodra@gmail.com>
1278
1279 * testsuite/binutils-all/dw5.S: Replace .string with .asciz.
1280 Support hpux .comm variant.
1281 * testsuite/binutils-all/readelf.exp: Define HPUX when assembling
1282 dw5 test for hppa64-hpux.
1283
1284 2017-02-24 Nick Clifton <nickc@redhat.com>
1285
1286 * readelf.c (show_name, do_dynamic, do_syms, do_dyn_syms,
1287 (do_reloc, do_sections, do_section_groups, do_section_details,
1288 (do_segments, do_unwind, do_using_dynamic, do_header, do_dump,
1289 (do_version, do_histogram, do_debugging, do_arch, do_notes,
1290 (do_archive_index, is_32bit_elf, decompress_dumps): Use
1291 bfd_boolean type.
1292 (parse_args): Treat the do_* variables as booleans.
1293 (print_vma): Return an unsigned int.
1294 (print_symbol): Change width parameter to signed int.
1295 (is_ia64_vms): Change return type to bfd_boolean.
1296 (guess_is_rela): Likewise.
1297 (slurp_rela_relocs): Likewise.
1298 (slurp_rel_relocs): Likewise.
1299 (dump_relocations): Likewise.
1300 (process_file_header): Likewise.
1301 (get_program_headers): Likewise.
1302 (process_program_headers): Likewise.
1303 (process_section_headers): Likewise.
1304 (process_section_groups): Likewise.
1305 (dump_ia64_vms_dynamic_fixups): Likewise.
1306 (dump_ia64_vms_dynamic_relocs): Likewise.
1307 (process_ia64_vms_dynamic_relocs): Likewise.
1308 (process_relocs): Likewise.
1309 (dump_ia64_unwind): Likewise.
1310 (ia64_process_unwind): Likewise.
1311 (dump_hppa_unwind): Likewise.
1312 (slurp_hppa_unwind_table): Likewise.
1313 (hppa_process_unwind): Likewise.
1314 (decode_arm_unwind_bytecode): Likewise.
1315 (decode_tic6x_unwind_bytecode): Likewise.
1316 (decode_arm_unwind): Likewise.
1317 (dump_arm_unwind): Likewise.
1318 (arm_process_unwind): Likewise.
1319 (process_unwind): Likewise.
1320 (get_32bit_dynamic_section): Likewise.
1321 (get_64bit_dynamic_section): Likewise.
1322 (process_dynamic_section): Likewise.
1323 (process_version_sections): Likewise.
1324 (process_symbol_table): Likewise.
1325 (process_syminfo): Likewise.
1326 (apply_relocations): Likewise.
1327 (disassemble_section): Likewise.
1328 (dump_section_as_strings): Likewise.
1329 (dump_section_as_bytes): Likewise.
1330 (load_specific_debug_section): Likewise.
1331 (load_debug_section): Likewise.
1332 (display_debug_section): Likewise.
1333 (process_section_contents): Likewise.
1334 (process_attributes): Likewise.
1335 (process_nds32_specific): Likewise.
1336 (process_gnu_liblist): Likewise.
1337 (print_core_note): Likewise.
1338 (print_gnu_note): Likewise.
1339 (print_v850_note): Likewise.
1340 (process_netbsd_elf_note): Likewise.
1341 (print_stapsdt_note): Likewise.
1342 (print_ia64_vms_note): Likewise.
1343 (process_note): Likewise.
1344 (process_notes_at): Likewise.
1345 (process_corefile_note_segments): Likewise.
1346 (process_v850_notes): Likewise.
1347 (process_note_sections): Likewise.
1348 (process_notes): Likewise.
1349 (process_arch_specific): Likewise.
1350 (get_file_header): Likewise.
1351 (process_object): Likewise.
1352 (process_archive): Likewise.
1353 (process_file): Likewise.
1354 (section_subset): Make static.
1355 (get_mips_reg_size): Return a signed integer.
1356 (process_object): Reverse the logic of the return value.
1357 (process_archive): Likewise.
1358 (process_file): Likewise.
1359 (process_program_headers): Fix snafu - if the program headers are
1360 not available then this is not a cause to fail.
1361 (process_corefile_note_segments): Likewise.
1362
1363 2017-02-24 Maciej W. Rozycki <macro@imgtec.com>
1364
1365 * readelf.c (get_ver_flags): Tidy the formatting of the string
1366 returned
1367
1368 2017-02-24 Maciej W. Rozycki <macro@imgtec.com>
1369
1370 * readelf.c (process_version_sections) <SHT_GNU_verdef>: Make
1371 `isum' unsigned.
1372 <SHT_GNU_verneed>: Likewise.
1373
1374 2017-02-24 Maciej W. Rozycki <macro@imgtec.com>
1375
1376 * readelf.c (process_version_sections) <SHT_GNU_verdef>: Limit
1377 the number of entries processed by the section size. Don't
1378 break out of the loop if `ent.vd_next' is 0.
1379
1380 2017-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
1381
1382 * testsuite/binutils-all/dw5.S: New file.
1383 * testsuite/binutils-all/dw5.W: New file.
1384 * testsuite/binutils-all/readelf.exp (readelf -wiaoRlL): New test.
1385
1386 2017-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
1387
1388 * dwarf.c (read_and_display_attr_value): Support DW_FORM_data16.
1389
1390 2017-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
1391
1392 * dwarf.c (display_debug_macro): Support DWARF-5. Rename
1393 DW_MACRO_GNU_*.
1394
1395 2017-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
1396
1397 * dwarf.c (decode_location_expression): Support DW_OP_implicit_pointer,
1398 DW_OP_const_type, DW_OP_regval_type, DW_OP_deref_type, DW_OP_convert
1399 and DW_OP_reinterpret.
1400 (read_and_display_attr_value): Support DW_AT_call_value,
1401 DW_AT_call_data_value, DW_AT_call_target and
1402 DW_AT_call_target_clobbered.
1403
1404 2017-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
1405
1406 * dwarf.c (fetch_indirect_line_string): New function.
1407 (abbrev_attr): New field implicit_const.
1408 (add_abbrev_attr): New parameter implicit_const.
1409 (process_abbrev_section): Support DW_FORM_implicit_const.
1410 (decode_location_expression): Support DW_OP_entry_value.
1411 (read_and_display_attr_value): Add parameter implicit_const. Support
1412 DW_FORM_line_strp and DW_FORM_implicit_const.
1413 (read_and_display_attr): Add parameter implicit_const.
1414 (process_debug_info): Support line_str and DWARF-5.
1415 (read_debug_line_header): Support DWARF-5.
1416 (display_formatted_table): New function.
1417 (display_debug_lines_raw): New parameter file. Support DWARF-5.
1418 (display_debug_lines_decoded): New parameter fileptr. Support DWARF-5.
1419 (display_debug_lines): Pass file parameter.
1420 (display_debug_macro): Update read_and_display_attr_value caller.
1421 (display_debug_abbrev): Support DW_FORM_implicit_const.
1422 (display_loclists_list): New function.
1423 (display_loc_list): Support .debug_loclists.
1424 (display_debug_ranges_list): New function from display_debug_ranges.
1425 (display_debug_rnglists_list): New function.
1426 (display_debug_ranges): Support .debug_rnglists.
1427 (debug_displays): Add .debug_line_str, .debug_loclists and
1428 .debug_rnglists.
1429 * dwarf.h: Include dwarf2.h
1430 (DWARF2_Internal_LineInfo): Add li_offset_size.
1431 (DWARF2_Internal_CompUnit): Add cu_unit_type.
1432 (enum dwarf_section_display_enum): Add line_str.
1433 * readelf.c (process_section_headers): Add rnglists and loclists.
1434
1435 2017-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
1436
1437 * dwarf.c (display_block): Add parameter delimiter.
1438 (decode_location_expression): Update display_block callers.
1439 (read_and_display_attr_value): Add parameter delimiter.
1440 (read_and_display_attr, display_debug_macro): Update
1441 read_and_display_attr_value caller.
1442
1443 2017-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
1444
1445 * dwarf.c (display_loc_list): Use dwarf_vma for offset, base_address
1446 and off.
1447 (display_loc_list_dwo): Use dwarf_vma for offset.
1448 (display_debug_loc): Use dwarf_vma for offset, base_address.
1449 (struct range_entry, range_entry_compar): Use dwarf_vma for
1450 ranges_offset.
1451 (display_debug_ranges): Use dwarf_vma for ranges_offset, offset and
1452 base_address.
1453
1454 2017-02-23 Nick Clifton <nickc@redhat.com>
1455
1456 * readelf.c (display_tag_value): Use an explicit signed type for
1457 the tag parameter.
1458 (display_gnu_attributes): Use an unsigned integer type for
1459 attribute tags.
1460 (display_power_gnu_attribute): Likewise.
1461 (display_s390_gnu_attribute): Likewise.
1462 (display_sparc_hwcaps): Likewise.
1463 (display_sparc_hwcaps2): Likewise.
1464 (display_sparc_gnu_attribute): Likewise.
1465 (display_mips_gnu_attribute): Likewise.
1466 (display_tic6x_attribute): Likewise.
1467 (display_raw_attribute): Likewise.
1468 (process_attributes): Likewise.
1469 (process_arm_specific): Delete redundant function.
1470 (process_power_specific): Likewise.
1471 (process_s390_specific): Likewise.
1472 (process_sparc_specific): Likewise.
1473 (process_tic6x_specific): Likewise.
1474 (process_msp430x_specific): Likewise.
1475 (display_public_gnu_attributes): New function. Displays known
1476 information about an unknown gnu attribute.
1477 (display_generic_attribute): New function. Calls
1478 display_tag_value for non-nul tags.
1479 (process_arch_specific): Call process_attributes even for
1480 architectures not known to specifically support gnu attributes.
1481
1482 2017-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1483
1484 * dwarf.c (decode_location_expression): Display also OP.
1485
1486 2017-02-22 Maciej W. Rozycki <macro@imgtec.com>
1487
1488 * readelf.c (process_version_sections) <SHT_GNU_verdef>: Print a
1489 new line between the heading and the first version definition
1490 entry.
1491
1492 2017-02-20 Nick Clifton <nickc@redhat.com>
1493
1494 PR binutils/21156
1495 * dwarf.c (cu_tu_indexes_read): Move into...
1496 (load_cu_tu_indexes): ... here. Change the variable into
1497 tri-state. Change the function into boolean, returning
1498 false if the indicies could not be loaded.
1499 (find_cu_tu_set): Return NULL if the indicies could not be
1500 loaded.
1501
1502 2017-02-17 Nick Clifton <nickc@redhat.com>
1503
1504 PR binutils/21156
1505 * readelf.c (find_section_in_set): Test for invalid section
1506 indicies.
1507
1508 2017-02-17 Nick Clifton <nickc@redhat.com>
1509
1510 * readelf.c (get_section_type_name): Add decoding of GNU section
1511 types.
1512
1513 2017-02-15 Nick Clifton <nickc@redhat.com>
1514
1515 * MAINTAINERS: (MIPS, MN10300): Move Eric Christopher to Past
1516 Maintainers section.
1517
1518 2017-02-14 Nick Clifton <nickc@redhat.com>
1519
1520 PR binutils/21159
1521 * readelf.c (dump_section_as_strings): Reset the start address if
1522 no decompression is perfromed.
1523 (dump_section_as_bytes): Likewise.
1524
1525 2017-02-14 Nick Clifton <nickc@redhat.com>
1526
1527 PR binutils/21158
1528 * rddbg.c (read_symbol_stabs_debugging_info): Check for a null or
1529 empty symbol name.
1530
1531 2017-02-14 Nick Clifton <nickc@redhat.com>
1532
1533 PR binutils/21157
1534 * stabs.c (parse_stab_enum_type): Check for corrupt NAME:VALUE
1535 pairs.
1536 (parse_number): Exit early if passed an empty string.
1537
1538 2017-02-14 Nick Clifton <nickc@redhat.com>
1539
1540 PR binutils/21155
1541 * readelf.c (IN_RANGE): New macro. Tests for an address + offset
1542 being within a given range.
1543 (target_specific_reloc_handling): Use macro to test for underflow
1544 as well as overflow of reloc offset.
1545
1546 2017-02-13 Nick Clifton <nickc@redhat.com>
1547
1548 PR binutils/21150
1549 * nm.c (file_symbol): Add test of string length before testing
1550 string characters.
1551
1552 2017-02-13 Nick Clifton <nickc@redhat.com>
1553
1554 PR binutils/21135
1555 * readelf.c (dump_section_as_bytes): Handle the case where
1556 uncompress_section_contents returns false.
1557 (dump_section_as_bytes, load_specific_debug_section): Likewise.
1558
1559 2017-02-13 Nick Clifton <nickc@redhat.com>
1560
1561 PR binutils/21149
1562 * readelf.c (get_compression_header): Add size parameter. Check
1563 size against sizeof compression header before attempting to
1564 extract the header.
1565 (process_section_headers): Pass size to get_compression_header.
1566 (dump_section_as_strings): Likewise.
1567 (dump_section_as_bytes): Likewise.
1568 (load_specific_debug_section): Likewise.
1569
1570 2017-02-13 Nick Clifton <nickc@redhat.com>
1571
1572 PR binutils/21148
1573 * readelf.c (process_version_sections): Include size of auxillary
1574 version information when checking for buffer overflow.
1575
1576 2017-02-13 Nick Clifton <nickc@redhat.com>
1577
1578 PR binutils/21147
1579 * readelf.c (process_section_contents): Fix off by one error
1580 reporting un-dumped sections.
1581
1582 2017-02-13 Nick Clifton <nickc@redhat.com>
1583
1584 PR binutils/21139
1585 * readelf.c (target_specific_reloc_handling): Add num_syms
1586 parameter. Check for symbol table overflow before accessing
1587 symbol value. If reloc pointer is NULL, discard all saved state.
1588 (apply_relocations): Pass num_syms to target_specific_reloc_handling.
1589 Call target_specific_reloc_handling with a NULL reloc pointer
1590 after processing all of the relocs.
1591
1592 2017-02-13 Nick Clifton <nickc@redhat.com>
1593
1594 PR binutils/21137
1595 * readelf.c (target_specific_reloc_handling): Add end parameter.
1596 Check for buffer overflow before writing relocated values.
1597 (apply_relocations): Pass end to target_specific_reloc_handling.
1598
1599 2017-01-27 Dilyan Palauzov <dilyan.palauzov@aegee.org>
1600 Nick Clifton <nickc@redhat.com>
1601
1602 PR 20343
1603 * doc/binutils.texi (ar): Extend documentation of the --plugin
1604 option. Include a description of where the plugins should be
1605 located.
1606 (nm): Likewise.
1607
1608 2017-01-23 Nick Clifton <nickc@redhat.com>
1609
1610 * MAINTAINERS: Add Bernd to Past Maintainers section.
1611 (SCORE): Remove Mei Ligang as maintainer. Add to Past Maintainers
1612 section.
1613
1614 2017-01-23 Bernd Schmidt <bschmidt@redhat.com>
1615
1616 * MAINTAINERS (BFIN): Remove myself as Blackfin maintainer.
1617
1618 2017-01-20 Andrew Burgess <andrew.burgess@embecosm.com>
1619
1620 * objdump.c (dump_section_header): Extract max section name length
1621 from data parameter, use this when formatting output.
1622 (find_longest_section_name): New function.
1623 (dump_headers): Calculate longest section name when in wide mode,
1624 reformat to unify printing of header line.
1625
1626 2017-01-18 Bernhard Rosenkranzer <bero@lindev.ch>
1627
1628 PR 21059
1629 * arlex.l: Support processing with flex 2.6.3.
1630 * deflex.l: Likewise.
1631
1632 2017-01-17 Dmitry Timoshkov <dmitry@baikal.ru>
1633
1634 * resbin.c: Optional dialog control data immediately follows
1635 the control description without alignment.
1636 * testsuite/binutils-all/windres/controldata.rc: New test.
1637 source.
1638 * testsuite/binutils-all/windres/controldata.rsd: New test.
1639
1640 2017-01-12 Nick Clifton <nickc@redhat.com>
1641
1642 PR binutils/20876
1643 * NEWS: Mention the new feature.
1644 * testsuite/binutils-all/objdump.exp (test_build_id_debuglink):
1645 New proc to test the location of separate debug info files using
1646 the build-id method.
1647
1648 2017-01-10 Nick Clifton <nickc@redhat.com>
1649
1650 PR 21034
1651 * stabs.c (parse_stab_members): Fix thinko checking for g++
1652 version 1 stabs information.
1653
1654 2017-01-09 Nick Clifton <nickc@redhat.com>
1655
1656 * objdump.c (display_file): Add new parameter 'last_file'. If
1657 last_file is true, do not call bfd_close at the end of the
1658 function.
1659 (main): Set the value of the last_file parameter when calling
1660 display_file.
1661
1662 2017-01-09 Alan Modra <amodra@gmail.com>
1663
1664 * readelf.c (process_section_headers): Correct .rel.dyn/.rela.dyn
1665 comment.
1666
1667 2017-01-06 Nick Clifton <nickc@redhat.com>
1668
1669 * MAINTAINERS: Move Paul Brook to the Past Maintainers section.
1670
1671 2017-01-04 Dilan Palauzov <dilyan.palauzov@aegee.org>
1672
1673 PR 20958
1674 * syslex.l (option): Add noyywrap
1675 (yywrap): Delete.
1676
1677 2017-01-02 Alan Modra <amodra@gmail.com>
1678
1679 Update year range in copyright notice of all files.
1680
1681 For older changes see ChangeLog-2016
1682 \f
1683 Copyright (C) 2017 Free Software Foundation, Inc.
1684
1685 Copying and distribution of this file, with or without modification,
1686 are permitted in any medium without royalty provided the copyright
1687 notice and this notice are preserved.
1688
1689 Local Variables:
1690 mode: change-log
1691 left-margin: 8
1692 fill-column: 74
1693 version-control: never
1694 End:
This page took 0.063163 seconds and 5 git commands to generate.