mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-19 13:53:29 +08:00
Correct comment concerning PE timestamp insertion.
* peXXigen.c (_bfd_XXi_only_swap_filehdr_out): Correct comment concerning timestamp insertion.
This commit is contained in:

committed by
Nick Clifton

parent
20b233dc48
commit
dfbfec241a
@ -1,3 +1,8 @@
|
|||||||
|
2018-11-09 Bernhard M. Wiedemann <bwiedemann@suse.de>
|
||||||
|
|
||||||
|
* peXXigen.c (_bfd_XXi_only_swap_filehdr_out): Correct comment
|
||||||
|
concerning timestamp insertion.
|
||||||
|
|
||||||
2018-11-09 Cupertino Miranda <cmiranda@synopsys.com>
|
2018-11-09 Cupertino Miranda <cmiranda@synopsys.com>
|
||||||
|
|
||||||
* arc-got.h (arc_got_entry_type_for_reloc): Changed to
|
* arc-got.h (arc_got_entry_type_for_reloc): Changed to
|
||||||
|
@ -877,7 +877,8 @@ _bfd_XXi_only_swap_filehdr_out (bfd * abfd, void * in, void * out)
|
|||||||
H_PUT_16 (abfd, filehdr_in->f_magic, filehdr_out->f_magic);
|
H_PUT_16 (abfd, filehdr_in->f_magic, filehdr_out->f_magic);
|
||||||
H_PUT_16 (abfd, filehdr_in->f_nscns, filehdr_out->f_nscns);
|
H_PUT_16 (abfd, filehdr_in->f_nscns, filehdr_out->f_nscns);
|
||||||
|
|
||||||
/* Only use a real timestamp if the option was chosen. */
|
/* Use a real timestamp by default, unless the no-insert-timestamp
|
||||||
|
option was chosen. */
|
||||||
if ((pe_data (abfd)->insert_timestamp))
|
if ((pe_data (abfd)->insert_timestamp))
|
||||||
H_PUT_32 (abfd, time (0), filehdr_out->f_timdat);
|
H_PUT_32 (abfd, time (0), filehdr_out->f_timdat);
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user