Ignore:
Timestamp:
Feb 6, 2017, 1:00:00 PM (8 years ago)
Author:
Silvan Scherrer
Message:

binutils: update trunk to version 2.27

Location:
binutils/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • binutils/trunk

  • TabularUnified binutils/trunk/ld/ldemul.c

    r1581 r1973  
    11/* ldemul.c -- clearing house for ld emulation states
    2    Copyright (C) 1991-2014 Free Software Foundation, Inc.
     2   Copyright (C) 1991-2016 Free Software Foundation, Inc.
    33
    44   This file is part of the GNU Binutils.
     
    206206{
    207207  if (entry_symbol.name != NULL
    208       && (link_info.executable || entry_from_cmdline))
     208      && (bfd_link_executable (&link_info) || entry_from_cmdline))
    209209    {
    210210      bfd_boolean is_vma = FALSE;
     
    236236before_allocation_default (void)
    237237{
    238   if (!link_info.relocatable)
     238  if (!bfd_link_relocatable (&link_info))
    239239    strip_excluded_output_sections ();
    240240}
     
    243243finish_default (void)
    244244{
    245   if (!link_info.relocatable)
     245  if (!bfd_link_relocatable (&link_info))
    246246    _bfd_fix_excluded_sec_syms (link_info.output_bfd, &link_info);
    247247}
     
    329329    }
    330330
    331   if (! options_found)
     331  if (!options_found)
    332332    fprintf (f, _("  no emulation specific options.\n"));
    333333}
Note: See TracChangeset for help on using the changeset viewer.