diff options
author | Alan Modra <amodra@gmail.com> | 2006-10-23 03:07:49 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2006-10-23 03:07:49 +0000 |
commit | 063d4ee10cc1a38b857dbc623f0c0d9bccbe6add (patch) | |
tree | 5b8c89e6f7a570621a1b7e961f41dad7fa4de75f /ld | |
parent | 9838404fe533d2f17fdc13960cfbaf6c7d097ceb (diff) | |
download | gdb-063d4ee10cc1a38b857dbc623f0c0d9bccbe6add.zip gdb-063d4ee10cc1a38b857dbc623f0c0d9bccbe6add.tar.gz gdb-063d4ee10cc1a38b857dbc623f0c0d9bccbe6add.tar.bz2 |
missed from 2006-10-19 commit.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/emultempl/armelf.em | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/emultempl/armelf.em b/ld/emultempl/armelf.em index 17fc522..f78b495 100644 --- a/ld/emultempl/armelf.em +++ b/ld/emultempl/armelf.em @@ -123,9 +123,6 @@ arm_elf_before_allocation (void) } /* We should be able to set the size of the interworking stub section. */ - /* Call the standard elf routine. */ - gld${EMULATION_NAME}_before_allocation (); - /* Here we rummage through the found bfds to collect glue information. */ /* FIXME: should this be based on a command line option? krk@cygnus.com */ { @@ -140,6 +137,9 @@ arm_elf_before_allocation (void) } } + /* Call the standard elf routine. */ + gld${EMULATION_NAME}_before_allocation (); + /* We have seen it all. Allocate it, and carry on. */ bfd_elf32_arm_allocate_interworking_sections (& link_info); } |