diff options
author | Nick Clifton <nickc@redhat.com> | 1999-06-02 14:26:01 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 1999-06-02 14:26:01 +0000 |
commit | 46d23b7c90f9ddd4d69827dd6bc0b733eb50f68d (patch) | |
tree | ba3126596ef3ed556bc3e8068b15809f2ae0b9df /ld/emultempl | |
parent | bf572ba0b9deeeba341d197a3412a3c0b44d819f (diff) | |
download | gdb-46d23b7c90f9ddd4d69827dd6bc0b733eb50f68d.zip gdb-46d23b7c90f9ddd4d69827dd6bc0b733eb50f68d.tar.gz gdb-46d23b7c90f9ddd4d69827dd6bc0b733eb50f68d.tar.bz2 |
Rename ARM interworking functions to avoid a name space collision
Diffstat (limited to 'ld/emultempl')
-rw-r--r-- | ld/emultempl/pe.em | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/emultempl/pe.em b/ld/emultempl/pe.em index 91a1eec..0ff11c8 100644 --- a/ld/emultempl/pe.em +++ b/ld/emultempl/pe.em @@ -639,7 +639,7 @@ gld_${EMULATION_NAME}_after_open () /* Find a BFD that can hold the interworking stubs. */ LANG_FOR_EACH_INPUT_STATEMENT (is) { - if (bfd_arm_get_bfd_for_interworking (is->the_bfd, & link_info)) + if (bfd_arm_pe_get_bfd_for_interworking (is->the_bfd, & link_info)) break; } } @@ -740,7 +740,7 @@ gld_${EMULATION_NAME}_before_allocation() { LANG_FOR_EACH_INPUT_STATEMENT (is) { - if (! bfd_arm_process_before_allocation + if (! bfd_arm_pe_process_before_allocation (is->the_bfd, & link_info, support_old_code)) { /* xgettext:c-format */ @@ -751,7 +751,7 @@ gld_${EMULATION_NAME}_before_allocation() } /* We have seen it all. Allocate it, and carry on */ - bfd_arm_allocate_interworking_sections (& link_info); + bfd_arm_pe_allocate_interworking_sections (& link_info); #endif /* TARGET_IS_armpe */ } |