diff options
author | Kuan-Lin Chen <kuanlinchentw@gmail.com> | 2018-03-15 14:50:51 +0800 |
---|---|---|
committer | Kuan-Lin Chen <kuanlinchentw@gmail.com> | 2018-03-15 14:50:51 +0800 |
commit | f9671640954362a918c669700bcc9a57be25782d (patch) | |
tree | db27daf4f651ed4c8a89877218b72932846a9154 /ld | |
parent | 8bb251a84a34586bd2c7b9078ee12523ef129205 (diff) | |
download | gdb-f9671640954362a918c669700bcc9a57be25782d.zip gdb-f9671640954362a918c669700bcc9a57be25782d.tar.gz gdb-f9671640954362a918c669700bcc9a57be25782d.tar.bz2 |
nds32: Remove the unsupported target feature.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/emultempl/nds32elf.em | 8 |
2 files changed, 5 insertions, 8 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index e74f722..ab27208 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2018-03-15 Kuan-Lin Chen <kuanlinchentw@gmail.com> + + * emultempl/nds32elf.em (nds32_elf_after_allocation): Remove + unsupported target feature. + 2018-03-14 H.J. Lu <hongjiu.lu@intel.com> PR ld/20882 diff --git a/ld/emultempl/nds32elf.em b/ld/emultempl/nds32elf.em index 3ea0ea2..eb29d04 100644 --- a/ld/emultempl/nds32elf.em +++ b/ld/emultempl/nds32elf.em @@ -191,14 +191,6 @@ nds32_elf_after_open (void) static void nds32_elf_after_allocation (void) { - if (target_optimize & NDS32_RELAX_EX9_ON - || (ex9_import_file != NULL && update_ex9_table == 1)) - { - /* Initialize ex9 hash table. */ - if (!nds32_elf_ex9_init ()) - return; - } - /* Call default after allocation callback. 1. This is where relaxation is done. 2. It calls gld${EMULATION_NAME}_map_segments to build ELF segment table. |