Changeset 1973 for binutils/trunk/ld/ldemul.c
- Timestamp:
- Feb 6, 2017, 1:00:00 PM (8 years ago)
- Location:
- binutils/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
binutils/trunk ¶
-
Property svn:mergeinfo
set to
/binutils/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
TabularUnified binutils/trunk/ld/ldemul.c ¶
r1581 r1973 1 1 /* ldemul.c -- clearing house for ld emulation states 2 Copyright (C) 1991-201 4Free Software Foundation, Inc.2 Copyright (C) 1991-2016 Free Software Foundation, Inc. 3 3 4 4 This file is part of the GNU Binutils. … … 206 206 { 207 207 if (entry_symbol.name != NULL 208 && ( link_info.executable|| entry_from_cmdline))208 && (bfd_link_executable (&link_info) || entry_from_cmdline)) 209 209 { 210 210 bfd_boolean is_vma = FALSE; … … 236 236 before_allocation_default (void) 237 237 { 238 if (! link_info.relocatable)238 if (!bfd_link_relocatable (&link_info)) 239 239 strip_excluded_output_sections (); 240 240 } … … 243 243 finish_default (void) 244 244 { 245 if (! link_info.relocatable)245 if (!bfd_link_relocatable (&link_info)) 246 246 _bfd_fix_excluded_sec_syms (link_info.output_bfd, &link_info); 247 247 } … … 329 329 } 330 330 331 if (! 331 if (!options_found) 332 332 fprintf (f, _(" no emulation specific options.\n")); 333 333 }
Note:
See TracChangeset
for help on using the changeset viewer.